javascript_howto thread: Style Sheet
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
|





