Is there a way to make some CSS rules visible only for Opera (11)?

Thank you!

link|improve this question

feedback

8 Answers

up vote 6 down vote accepted
+150

I love challenges!
It took me some time but I finally found it:

body {background:0} /* default */
@media not screen and (1) {
body {background:red} /* OP 11 */
}
@media not screen and (orientation) {
body {background:green} /* for the earlier versions of Opera that pick the first media query's rule + chrome/safari */
}

browsers tested:

  • red: Opera 11
  • green: Opera 10 and 10.5 + WebKit browsers
  • none: Opera 9.26 + Firefox 3.6 + IE9

It's related to the error-handling and also the fact that NOT negates the global result (WebKit browsers don't evaluate orientation correctly without a valid value). Since orientation is supported in presto 2.7 the second media query is FALSE.

The false orientation hack sounds like a good name to me.

link|improve this answer
Sir. You're officialy (and I really give you a warranty on this) AWESOME. – Tomkay Jan 19 '11 at 8:42
1  
How could somebody find hack like this? :-o – Petr Peller Apr 6 '11 at 11:17
feedback

Is there a good reason you want to do this?

I'd always recommend against doing browser detection. In almost every case where people want to use it, it's a better idea to use feature detection instead. If you find out if the feature you want is supported, then you'll automatically start supporting new versions of other browsers when they catch up, without having to constantly work to keep your site up to date as you would with browser detection scripts.

For feature detection, one of the best tools I can suggest is to use Modernizr.

For browser detection - especially brand a new browser like Opera11 - I can't really suggest anything that will be foolproof. The correct answer is to look at the User Agent string, but that can easily be changed by the user to spoof another browser (and often is, especially by Opera users, as they're the one most often trying to get around sites that do browser detection and try to block them)

link|improve this answer
1  
That's definetly a good point, and i agree you.. but I try to avoid javascript as much as possible.. and Im curious if someone have found a hack for the Opera 11 yet – Tomkay Jan 10 '11 at 15:18
feedback

You could try using http://www.headjs.com/

link|improve this answer
+1 Good find! This will be useful for forwards compatibility. – jmort253 Jan 17 '11 at 0:14
feedback

I don't know of a CSS-only way as Opera 11 is still VERY new.

You can either use server-side languages like PHP to detect the User Agent of the browser or you can use the freely available Javascript solution CSS Browser Selector.

The above solution does not yet include Opera 11, so let's check Opera 11's User Agent string by checking their references. (Actually they have their own article on how to detect opera)

Opera/9.80 (Windows NT 5.1; U; en) Presto/2.7.39 Version/11.00

When you now look at the Javascript of the above mentioned CSS Browser selector you can see it is just reading out the navigator.userAgent and comparing it to many variations - just add your Opera 11 variation and you are good to go (or wait until the developer updates the javascript - or even better, update the script and tell the author about it!).

link|improve this answer
feedback

Here you go......

/* Opera */
@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0)
{
here you can display anything you want just for opera
}
link|improve this answer
ouch! hacky, hacky, hacky. But I suppose if you really need to do it.... :-s – Spudley Jan 18 '11 at 13:07
feedback

The following style would indeed only get rendered in Opera. See Webmonkeys blog post for details:

@media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {
    #myid { background-color: #F00; }
}

But keep in mind, that all sort of CSS hacks might not work anymore in the future. So I would strongly recommend you to add the styles dynamic only for Opera with jQuery (jQuery.browser).

link|improve this answer
Another answer gave the same code already. but I'm giving you the point for including the reference back to the blog. I really hope I never see a site actually using this hack, though. :-s – Spudley Jan 18 '11 at 13:08
As I clicked on answer and wrote it, the_'s answer wasn't exactly like what I wanted to write. I've seen that it is a duplicate but I decided to leave it just for the reference. – Martin Buberl Jan 18 '11 at 16:55
feedback

What is the problem you want to solve? As Spudley says, it's best to avoid browser detection altogether.

Maybe we can help you with the actual issue you're trying to solve?

link|improve this answer
No there is no case. I just want to know if there is some CSS Hack to seperate it from other browsers. – Tomkay Jan 12 '11 at 7:18
feedback

check out this SO Community Wiki.

link|improve this answer
Specially for Opera 11 – Tomkay Sep 22 '11 at 14:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.