Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript_howto thread: Style Sheet


Message #1 by "S.Arun Srinivasan" <arun@o...> on Sat, 11 May 2002 13:29:22 +0530 (IST)

 Hai,
 
 	Which version of browser's(NN & IE) support the following style
 sheet code
 
 <style type="text/css">
 <!-- Hide from legacy browsers
 
 @media screen {
 
 .display {
   font-family: Verdana;
   font-size: 8pt;
 }
 
 .print {
   display: none;
 }
 
 }
 
 
 @media print {
 
 
 .display {
   display: none;
 }
 
 .print {
   font-family: "Times New Roman";
   font-size: 10pt;
 }
 
 }
 
 //-->
 </style>
 
 Bye
 Arun


  Return to Index