View Single Post
Old 06-05-2013, 10:43 PM   #4
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,361
Karma: 20212223
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
One technique i use is to define the properties of a generic blockquote container itself, then use a complex selector to style all paragraphs within a BQ a certain way:

blockquote {margin:2em}

blockquote.write p {text-align:left; text-indent:1em; font-style:italic}
blockquote.print p {text-align:justify; text-indent:0; font-family:unicode}

<blockquote class="write">
<p>...</p>
<p>...</p>
<p>...</p>
</blockquote>

<blockquote class="print">
<p>...</p>
<p>...</p>
<p>...</p>
</blockquote>

Last edited by Turtle91; 06-05-2013 at 10:45 PM.
Turtle91 is offline   Reply With Quote