Using the Paul Ireland technique that Scott Simpson also linked, you can easily include target selectors right next to the rest of your CSS. For instance:
div { display: inline-block; .ie-8 & { zoom: 1; display: inline; } }
Compiled CSS will be as follows:
div { display: inline-block; } .ie-8 div { display: inline; zoom: 1; }
I believe this method is preferable to split style sheets, because it’s easier to keep track of your IE-specific CSS.
source share