Forum Moderators: open
This occurs even when the <div id="quote"> tags are at opposite sides of the page.
For example at:
<snip>
If I remove the second set of <div id="quote"> tags the page validates beautifully.
Any ideas as to why this happens?
[edited by: Nick_W at 6:29 am (utc) on June 3, 2003]
[edit reason] no personal urls please / thanks! [/edit]
#quote {
background-color : #1874cd;
border-bottom : 1px solid #dee3e7;
border-left : 1px solid #dee3e7;
border-right : 1px solid #dee3e7;
border-top : 1px solid #dee3e7;
margin : 12px;
padding-top : 7px;
padding-right : 10px;
padding-bottom : 10px;
padding-left : 10px;
color : #000000;
font : 10px verdana, arial, sans-serif;
letter-spacing : 0;
line-height : 12px;
text-align : justify;
}
Yes, just swap the #quote (which is an id, not a class selector) for blockquote or q, whichever is appropriate. blockquote is used for a long quotation (typically multi-line), and q is used for inline quotation.
See: [w3.org...]