Quote:
Originally Posted by Tex2002ans
Are you using <div class="block"> instead of <blockquote>?
|
I have things that are "blocks" but not really block quotes; letter, telegram, poem, notice (sign), etc. So I use, for example, <div class="block poem">. The common / shared stuff is in the css for block, then the specific stuff is in the others (div.letter, div.poem, etc.).
It seems to me that I could instead use
Code:
div.poem, div.letter, div.telegram, etc. {
/* common block stuff here */
}
div.poem {
/* poem specific stuff here */
}
I don't know if one is better than the other.