I want to Target with CSS valid code. to IE7 and IE8, Please Give me some Information about this Issue and CSS code should be W3C Valid. IE8 is here. Some time we fix for IE7 but not work in IE8.

link|improve this question

feedback

4 Answers

up vote 38 down vote accepted

Explicitly Target IE versions without hacks using HTML and CSS

Use this approach if you don't want hacks in your CSS. Add a browser-unique class to the <html> element so you can select based on browser later.

Example

<!doctype html>
<!--[if IE]><![endif]-->
<!--[if lt IE 7 ]> <html lang="en" class="no-js ie6">    <![endif]-->
<!--[if IE 8 ]>    <html lang="en" class="no-js ie8">    <![endif]-->
<!--[if IE 9 ]>    <html lang="en" class="no-js ie9">    <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--><html lang="en" class="no-js"><!--<![endif]-->
    <head></head>
    <body></body>
</html>

Then in your CSS you can very strictly access your target browser.

Example

.ie6 body { 
    border:1px solid red;
}
.ie7 body { 
    border:1px solid blue;
}

For more information check out http://html5boilerplate.com/

Target IE versions with CSS "Hacks"

More to your point, here are the hacks that let you target IE versions.

Use "\9" to target IE8 and below.
Use "*" to target IE7 and below.
Use "_" to target IE6.

Example:

body { 
border:1px solid red; /* standard */
border:1px solid blue\9; /* IE8 and below */
*border:1px solid orange; /* IE7 and below */
_border:1px solid blue; /* IE6 */
}
link|improve this answer
1  
Very cool. I'm copying this into my Evernote account for reference. – Graham Apr 15 '11 at 14:30
Unfortunately, IE9 and IE10 will apply the \9 declaration as well. – BoltClock Feb 2 at 2:18
feedback

I would recommend looking into conditional comments and making a separate sheet for the IEs you are having problems with.

 <!--[if IE 7]>
   <link rel="stylesheet" type="text/css" href="ie7.css" />
 <![endif]-->
link|improve this answer
feedback

Well you don't really have to worry about IE7 code not working in IE8 because IE8 has compatibility mode (it can render pages the same as IE7). But if you still want to target different versions of IE, a way that's been done for a while now is to either use conditional comments or begin your css rule with a * to target IE7 and below. Or you could pay attention to user agent on the servers and dish up a different CSS file based on that information.

link|improve this answer
Thanks.. but using * hack is Not valid W3C CSS . so it might be Problem. and Conditional comment is Useful solution. but It Create much larger version of HTML file.. so might be We create Diff CSS. like IE7.css , Is there any conditional comment for IE8. Once again thansk Apphacker – Wasim Shaikh May 2 '09 at 5:52
feedback

The actual problem is not IE8, but the hacks that you use for earlier versions of IE.

IE8 is pretty close to be standards compliant, so you shouldn't need any hacks at all for it, perhaps only some tweaks. The problem is if you are using some hacks for IE6 and IE7; you will have to make sure that they only apply to those versions and not IE8.

I made the web site of our company compatible with IE8 a while ago. The only thing that I actually changed was adding the meta tag that tells IE that the pages are IE8 compliant...

link|improve this answer
Oh,, sounds Good. Can you please let Us know.. what META tag. – Wasim Shaikh May 2 '09 at 6:41
The X-UA-Compatible meta tag: msdn.microsoft.com/en-gb/library/cc817574.aspx – Guffa May 2 '09 at 11:29
Thanks a lot Guffa – Wasim Shaikh May 4 '09 at 7:46
+1 Indeed, IE 8 has much less problems and one hasn't to "crossbrowserfiy" to much for it. And IE 9 Is fantastic and make a strong competition to Chrome. – Oybek Feb 22 at 8:09
feedback

Your Answer

 
or
required, but never shown

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