I know how to target IE, but that's only in HTML (which means I need to create another CSS file for IE bugs). Is their anyway, how I can implement the fixes in the same CSS file. This mean I target IE with CSS code?
|
|
You can do with these hacks For example:
|
|||
|
|
|
There is no equivalent to conditional comments/code in CSS. The only thing you could do there are the old CSS hacks -- that people struggled with before conditional comments became known. You can make CSS hacks work, for a bit, but it's not a smart or robust approach. Recommended approach:
|
|||
|
|
|
In your CSS code, precede your selectors with something that only IE will recognize. Examples of selecting IE6 only: IE7 only A comprehensive list can be found here: http://paulirish.com/2009/browser-specific-css-hacks/ |
|||||||
|