- From: Eric Richards <e.richards@clear.net.nz>
 - Date: Mon, 14 May 2001 07:06:09 +1200
 - To: "'html-tidy@w3.org'" <html-tidy@w3.org>
 
Hi Al
This rude HTML below will give different results between printing on
screen and printing on paper, how could you print white on white paper
with monochrome printer
note: the <meta name="HTML tidy generator" I think this looks better
>From Eric
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
 <head>
   <meta name="HTML tidy generator" content="HTML Tidy, see www.w3.org">
   <title></title>
<style type="text/css"  media="screen">
      h4.screen { color: blue; text-align: center}
   h4.print  { color: #e0e0e0 }
</style>
<style type="text/css" media="print">
    h4.screen { font-weight: 100; font-size:1pt}
     h4.print  { text-align: center }
</style>
 </head>
 <body bgcolor="white">
   <h4 class="screen">show this on screen</h4>
   <h4 class="print">print this</h4>
 </body>
</html>
Received on Sunday, 13 May 2001 15:17:10 UTC