Quote:
Originally Posted by JSWolf
I cannot stand those fake blockquotes. The following CSS code is what I use for blockquotes.
Code:
blockquote {
margin-top: 1em;
margin-right: 1.5em;
margin-bottom: 1em;
margin-left: 1.5em;
}
If the blockquote ends at the bottom of the page, I use the following code.
Code:
.blockquote {
margin-top: 1em;
margin-right: 1.5em;
margin-bottom: 1em;
margin-left: 1.5em;
}
Code:
<blockquote class="blockquote">
<p>"This is at the end of the chapter"</p>
</blockquote>
|
Can you explain the difference between blockquote and blockquote.blockquote here? I get you're using the latter only occasionally but I'm missing what it's meant to do.