If you want to target modern Opera versions (9.0-9.5b2+), you may use this code as a wrapper (taken from this site):
@media all and (min-width:0px) {
head~body:lang(en) [place Opera-specific css here]
}Remember that to have this working properly, you need to specify language in html element of the page (not only 'en' of course is possible, but also any other language):<html lang="en">
UPDATE 21.06.2009: Now css3 media queries have got support in Fx 3.5, so the changes are visible in that browser too. Use the solution proposed here.