Posted by Spartanicus on 07/30/05 18:53
Roy Schestowitz <newsgroups@schestowitz.com> wrote:
>Is there a CSS-driven way of diplaying the link address near links (without
>the use of JavaScript)? Is there a CSS hack of some sort?
Proper CSS, no "hack":
@media print{
a:after{content: " <"attr(href)">"}
}
Does not work in IE due to poor CSS support.
>I would like to
>embed full URL's near the links in a printable version of a page (and in a
>printed version links cannot be followed).
I'd rethink that strategy, it tends to make a mess of printed pages and
the functionality offered is most questionable.
--
Spartanicus
[Back to original message]
|