You can write css using hacks that run a specific property only in a specific browser.
how
*color: black; /* for IE7 and below */ _color: black; /* for IE6 and below */
But this will be a pain for mantain, and will also not check your css anymore. Although you are reducing requests (by 1 or 2?), I still don't see a problem if you use conditional comments to load a CSS browser for IE6 for exaple. It will still add another 1 query, which is actually not so much. And if you think that IE6 is being used less and less, perhaps only 10% of your users will actually make this request.
easwee
source share