On 2/7/07, Designer <[EMAIL PROTECTED]> wrote:
Web Man Walking wrote:
> Hello
>
> I am looking to mark-up something of the like:
>
> /"I think Web Standards are excellent"/
> *Ed Henderson*
>
> My first guess was:
>
> <blockquote>
> <p><q>I think Web Standards are excellent</q></p>
> <p><cite>Ed Henderson</cite></p>
> </blockquote>
>
> Does anyone have any other ideas?
>
> Regards
>
> Ed Henderson
>
Since <q> fails in IE, I'd probably use:
<blockquote>
<p><cite>I think Web Standards are excellent</cite></p>
<p><strong>Ed Henderson</strong></p>
</blockquote>
That's visual styling there, not semantic! I would do the following:
<blockquote>
<p><q>"I think Web Standards are excellent"</q></p>
<cite>Ed Henderson</cite>
</blockquote>
q:before {
content:'';
}
q:after{
content:'';
}
This will ensure that users only see one set of quotation marks (I think).
--
--
Christian Montoya
christianmontoya.net .. designtocss.com
*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************