I am producing a standalone HTML document under the constraint that the document has to be exactly one file. I would like to use CSS to make sure that links in the document are visible and discoverable (probably blue with underlines) when viewed in a browser, but to vanish most of that formatting when the document is printed.

Is this possible with just a <style> block?

Is it possible to get what I want with JavaScript jiggery-pokery?

link|improve this question

2  
jiggery-pokery is not a technical term. Please define. (: – Hogan May 23 '11 at 17:22
1  
@Hogan: en.wiktionary.org/wiki/jiggery-pokery – Wesley Murch May 23 '11 at 17:29
1  
I'm using 'jiggery-pokery' here as a synonym for 'klu[d]?ge'. – Sean M May 23 '11 at 18:05
feedback

1 Answer

up vote 2 down vote accepted

You can use @media or @import in a <style> block and set styles specific to the media type.

Read more here: http://www.w3.org/TR/CSS2/media.html

@media print {
  /* print styles */
  a {color:#333}
}
@media screen {
  /* screen only styles */
  a {border-bottom:1px solid blue}
}
/* general styles here */
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.