Sent by John Woram on 1 February 2002 13:01
Aardvark wrote: "i intend to create a print style sheet that shows the
URLs for the links, ..."
The following works well for me:
In the <style> section, .doprint {display:none;}
in the <style ... media="print"> section,
.doprint {display:inline;}
a {text-decoration:none; color:#000;}
<body> (sample text line follows)
Visit the <a href="(link url goes here)">Banknotes & Banking
page<a/> at the Bank of England website <span class="doprint">(PRINTED
URL GOES HERE) <span>for more information.
Thus the ALL CAPS section shows up on the printed page, but not
onscreen. And the blue-underlined link text is printed as black,
non-underlined.
John