Forum Moderators: not2easy
Anybody aware of css hacks for opera (7+ version)
ex - hacks
•*left:50px – for IE7
•_left:10px – for IE6
•html > body #left:10px – for mozilla, ie7 and opera
is there any hack, specific to opera. I want to write a class only for opera..
Similarly does anybody know about the safari hacks.
Kindly asap..
///-:))Designer____123_____Designer
The syntax is as follows:
@media all and (min-width: 0px){
p {
color:green;
}
}
A more detailed explanation can be found here [virtuelvis.com].
As Opera is one of the most standards-compliant browsers out there, it is almost always better to make the page work without hack in Opera and Firefox and save the hacks for IE6 etc. using conditional comments.