Hide CSS from Opera
4
Hide CSS styles from Opera by substituting Latin letter "r" for Unicode character 82 in the media attribute "screen" of the style tag.
Tested in browsers based on Netscape, Mozilla, and Internet Explorer for PC.
Tested in browsers based on Netscape, Mozilla, and Internet Explorer for PC.
<html>
<head>
<!-- Styles for Opera and other browsers -->
<style type="text/css" media="screen">
body
{
color: red;
font-size: x-large;
font-weight: bold;
}
</style>
<!-- Styles for browsers besides Opera -->
<style type="text/css" media="scReen">
body
{
color: blue;
}
</style>
</head>
<body>
<p>This paragraph will be red in Opera. It will be blue in Netscape, Mozilla and Internet Explorer 5.0+ for PC (including version 7).</p>
</body>
</html>






Thus feel free to use this little trick for all your work if needed, business or pleasure.
Regards,
Kumar S
GuyFromChennai.com