Indentation 1


Indent - Google Product Forums

Indent Your Paragraphs

Look in the HTML for your blog
.post p {
  margin:0 0 .75em;
  line-height:1.6em;
}
and add a "text-indent" attribute
.post p {
  margin:0 0 .75em;
  line-height:1.6em;
  text-indent:4em;
}
to enclose each logical paragraph in
"<div style="text-indent:4em;"> ... "</div>" tags
and
<div style="text-indent:-4em; padding-left:4em;">

Most Frequent Blogger Questions: Text Indenting in Paragraphs



Comments