> I'm trying to work with the following:
>
> <q>One plus two plus <del>three plus four</del> plus five makes fifteen.</q>
>
> with styles such as:
>
> q del { /* What goes here? */ }
> q del:before {content: "...";}

I can't see a way to do this without adding more markup:
<del><span>three plus four</span></del>
That way you could hide the span and then insert the ellipsis as above.

But, as others have said, this seems much more suited to javascript.
CSS is a presentational tool and as such shouldn't really be used to change the content of a document.

Cheers,

Rob

--
Rob Wilmshurst
[EMAIL PROTECTED]



*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to