vote up 0 vote down star

Hi, I have the below code to check if the user are using IE7...and it needs to over ride the .web_info style. If not IE7 it uses the default style, if its not IE at all it will use the ff_styles.css. This doesnt seem to be working.

<link rel="stylesheet" type="text/css" href="../styles.css">


<![if !IE]>
<link rel="stylesheet" type="text/css" href="../ff_styles.css">
<![endif]>

<![if IE 7]>
<style type="text/css">
.web_info
{
left: 450px;
top: 200px;
width: 300px;
height: 60px;	
}
</style>
<![endif]>

Any suggestions? Thanks

flag

71% accept rate

3 Answers

vote up 1 vote down check

Conditional comments are IE specific and therefore "<![if !IE]>" is not a valid instruction for firefox or any other browser. Additionally I would suggest you try the following syntax:

<!--[if IE 7]>
<style type="text/css">
.web_info
{
left: 450px;
top: 200px;
width: 300px;
height: 60px;   
}
</style>    
<![endif]-->

One final note on my part: Since IE7/IE8 are mostly standard compliant, these CSS hacks should be avoided, if possible.

Update: Thanks to slosd I stand corrected! According to "Supporting IE with conditional comments" you can use the following to hide something from IE:

<!--[if !IE]>-->
do something; IE will ignore this, other browsers parse it
<!--<![endif]-->

Sorry for the inconvenience I caused!

Full working example:

<link rel="stylesheet" type="text/css" href="../styles.css">

<!--[if !IE]>-->
  <link rel="stylesheet" type="text/css" href="../ff_styles.css">
<!--<![endif]-->

<!--[if IE 7]>
  <style type="text/css">
  .web_info{
    left: 450px;
    top: 200px;
    width: 300px;
    height: 60px;   
  }
  </style>
<![endif]-->
link|flag
Thanks, so how would I check that it isnt IE...rather than doing if firefox if opera etc – Elliott Jun 14 at 14:09
1  
! is valid operator: msdn.microsoft.com/en-us/library/… You can use it for styles you want to include in every browser but in IE. – slosd Jun 14 at 14:10
Thanks got it :) – Elliott Jun 14 at 14:20
vote up 4 vote down

Shouldn't this look like

<!--[if IE 7]>
..
<![endif]-->

and

<!--[if !IE]>
...
<![endif]-->

Note that

<!--[if !IE]>

should never yield true as these Conditional comments only get interpreted by IE.

link|flag
2  
The reason is that, for other browsers, <!-- antything --> appears as an XML/HTML comment and is not interpreted. – streetpc Jun 14 at 14:02
I don't think, what he wants to do is if is NOT IE so if !IE is right – bgy Jun 14 at 14:02
Thanks but in firefox it still showing the overwritten style not the ff_styles – Elliott Jun 14 at 14:07
The missing ! in front of IE was just a typo. But thanks – jitter Jun 14 at 14:07
vote up 2 vote down

Don't check if the browser is not IE, check if it is IE7 then if it is IE and then fallback for default. More info: http://www.quirksmode.org/css/condcom.html

link|flag

Your Answer

Get an OpenID
or

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