View Single Post
Old 05-06-2013, 12:48 AM   #2
Tex2002ans
Wizard
Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.Tex2002ans ought to be getting tired of karma fortunes by now.
 
Posts: 2,306
Karma: 13057279
Join Date: Jul 2012
Device: Kobo Forma, Nook
You could use a specific div if you wanted, or you could use a blockquote tag:

http://www.w3schools.com/tags/tag_blockquote.asp

Code:
<blockquote>
<p>Paragraph one.</p>
<p>Paragraph two.</p>
<p>Paragraph three.</p>
</blockquote>
You can then have the CSS applied to blockquote classes. You could then leave the blockquote design up to the specific device, or you could apply CSS along the lines of:

Code:
blockquote {
    margin-left: 5%;
    margin-right: 0;
}
Tex2002ans is offline   Reply With Quote