Debates between "CSS hacks" and "Conditional Comments" have become a regular occurrence for me lately, so I wanted to hear the thoughts of the Stack Overflow community on this topic.
<!--[if IE]>
<link type="text/css" rel="stylesheet" href="ie-specific.css" />
<![endif]-->
One common argument against using IE Conditional Comments is that it adds extra HTTP requests, potentially slowing down page load times. However, I haven't found any concrete data either supporting or refuting this claim.
Apart from the discussion about managing multiple stylesheets versus one stylesheet (which is worth considering in its own right), has anyone conducted tests to determine the extent of slowdown caused by using Conditional Comments? Or could you direct me to any existing research on this topic?