Is there a way to make some CSS rules visible only for Opera (11)?
Thank you!
|
feedback
|
|
I love challenges!
browsers tested:
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 The false orientation hack sounds like a good name to me. | |||||||
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) | |||||
feedback
|
|
You could try using http://www.headjs.com/ | |||
|
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 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)
When you now look at the Javascript of the above mentioned CSS Browser selector you can see it is just reading out the | |||
|
feedback
|
|
Here you go......
| ||||
feedback
|
|
The following style would indeed only get rendered in Opera. See Webmonkeys blog post for details:
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). | |||||
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? | |||
feedback
|
|
check out this SO Community Wiki. | |||
|
feedback
|