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.
|
feedback
|
|
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 Example
Then in your CSS you can very strictly access your target browser. Example
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. Example:
| |||||||
feedback
|
|
I would recommend looking into conditional comments and making a separate sheet for the IEs you are having problems with.
| |||
|
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. | |||
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... | |||||||||
feedback
|