IE ignoring custom css selectors?
5 answers
Are you creating custom tags? IE handles custom tags differently than other browsers.
Why not use span and class, I think IE6 might be better responsive, simple.
<div id="testid"><span class="kl">test</span></div>
.kl {
font-size:10pt;
font-weight: bold;
color:#6e90a6;
}
+8
source to share