vote up 1 vote down star

Hello!

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

Thank you!

flag
1  
what is the reason you want to do this? as several people have pointed out this isn't usually the best way to go about fixing CSS issues (IE excepted), if we understood what the underlying problem was we might be able to suggest something more appropriate – Rory Fitzpatrick Aug 29 at 19:33

8 Answers

vote up 5 vote down

Do not think "detect Opera".

Think "detect browsers that do not support feature x". For example, this JavaScript statement lets you detect browsers that support moz-border-radius:

typeof (getComputedStyle(document.body, '').MozBorderRadius)=='string'

and this is the equivalent for WebKit-based browsers (Safari, Chrome):

typeof (getComputedStyle(document.body, '').WebKitBorderRadius)=='string'

Putting that together, we can come up with something like

function detectBorderRadiusSupport(){
    var styleObj;
    if( window.getComputedStyle ){
    	styleObj=window.getComputedStyle(document.body, '');
    }else{
    	styleObj=document.body.currentStyle;
    }
    return typeof styleObj.BorderRadius != 'undefined' || typeof styleObj.MozBorderRadius != 'undefined' || typeof styleObj.WebKitBorderRadius != 'undefined';
}

// the below must be inside code that runs when document.body exists, for example from onload/document.ready/DOMContentLoaded event or inline in body

if(!detectBorderRadiusSupport())document.body.className+=' fakeBorderRadius';

CSS:

body.fakeBorderRadius .roundMyCorners{
    /* CSS for Opera and others to emulate rounded corners goes here, 
    typically various background-image and background-position properties */
}

Caveat: untested :-p

link|flag
vote up 2 vote down

There's no pure-CSS hack that I know of.

If you have to hack, you'll need to use JavaScript:

// remember to limit maximum version, because hacking all future versions
// will eventually break the page 
if (window.opera && window.opera.version() < 10)     
{
   document.documentElement.className += ' opera9';
}

and in CSS:

.opera9 .element-to-hack { /*declarations for opera <= 9 only*/ }

But please double-check CSS spec first to ensure that what you're hacking is actually a bug. Opera 10 has full CSS2.1 support and passes all Acid tests, so if something doesn't appear right, it might be because of other reasons (error somewhere else in the code, detail or corner case you shouldn't rely on, etc.)

link|flag
vote up 1 vote down

Not in any way I would recommend.

Check for Javascript or PHP browser sniffers on Google. Some may be so outdated that you need to add detection for Opera 9.5+, however.

Browser sniffers (for styling) are generally bad practice.

Also, note that Opera 9.5+ gives users the option of masking their browser as IE, rendering any kind of sniffing useless.

Edit: As you can see in another answer, there is window.opera.version(). I didn't know the window.opera object contained this information. HOWEVER, you should probably look to see if this object is still available when someone has set Opera to be seen as IE or some other browser.

link|flag
Does that "masquerade as IE" option include hiding the window.opera variable? If not, detection should still be possible via JavaScript, at least. – Ben Blank Jul 13 at 22:51
If the window.opera object is the only thing to go on, you cannot differentiate between Opera 9.5+ and earlier versions. The asker was quoting Opera 9.5+ specifically so I am not sure if he only CARES about 9.5+ or if he specifically needs to target 9.5+. Will edit my answer. – jon.wd7 Jul 14 at 0:26
Of course, had no idea there was window.opera.version()… Shows how much I care about Opera. :) – jon.wd7 Jul 14 at 1:13
vote up 0 vote down

The only way I can think of is to check the user agent and only reference the style sheet when it's an opera browser. Since the user agent can be messed with this might not be 100% reliable.

link|flag
vote up 0 vote down

You can use javascript to write out a <link> to include a specific CSS file.

if (navigator.userAgent.indexOf(’Opera’) != -1) {
    document.write(””);
}
else {
    document.write(””);
}

For Opera 7 you can use this:

/*Visible to only Opera*/
@media all and (min-width: 0) {
    /* css rules here */
}

However, it's generally bad practice to do styling based on browser-sniffing.

link|flag
1  
I certainly don't want to do browser sniffing, or any kind of JavaScript or server-side detection. I need to make some rules visible only for opera to display CSS rounded corners on elements with border. – Calin Don Jul 13 at 16:09
Other browsers have joined Media Query party, so this hack is now out of date. – porneL Jul 13 at 22:17
1  
And it's therefore an excellent example of why you should avoid CSS hacks. – Ben Blank Jul 13 at 22:48
vote up 0 vote down

This hack works for the latest Opera:

 @media all and (-webkit-min-device-pixel-ratio:10000), not all and (-webkit-min-device-pixel-ratio:0) {
       #id {css rule}
 }

It doesn't touch any other browser as far as i tested, but this may be actual for several months, with web technologies boom etc.

link|flag
vote up 0 vote down

You could use Modernizr ( http://www.modernizr.com/ ) to detect CSS features you want to use – it applies class names to the body element so you can then construct your CSS accordingly.

link|flag
vote up 0 vote down

<link href="opera.css" rel="stylesheet" type="text/opera" media="all" />

sample here

link|flag

Your Answer

Get an OpenID
or

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