I want to make a css rule, which affects all but the opera browser, all the other browser add a css rule:
#content{left:1px;}
, (opera without this rule). the below code not worked...
<!--[if !OPERA]>
<style type="text/css">
#content{left:1px;}
</style>
<![endif]-->