Re: Suggestion: 'resolve' property

* Jens Meiert wrote:
>Often using <acronym /> and <abbr /> elements, I wondered (but didn't look
>for, so excuse me if this post is redundant or the problem already solved) if
>there is any possibility to resolve these elements when printed.

The content property, e.g.

  abbr[title] { content: attr(title) }

http://www.w3.org/TR/css3-content/#content

>There would be two possible values (true|false), e.g. using 'false' as
>default. -- When printed (or generally displayed), it could be rendered like this:
>
>   HTML (Hypertext Markup Language)
>   Captology (Computers as persuasive technologies)

@media print { abbr[title]::after { content: "(" attr(title) ")" } }

Received on Monday, 4 August 2003 07:27:48 UTC