Is there something wrong with firefox? My styles on <label>
work in every browser but FF. I'm using 3.5.5. I mean they even work in every version of IE? anyone have a suggestion?
EDIT, as i said, the code works in any other browser. but all of these fails.
<label style="color: #aaa; font-weight: bold;">Blah</label>
and
.mylabel {
color: #aaa;
font-weight: bold;
}
<label class="mylabel">Blah</label>
and
label {
color: #aaa;
font-weight: bold;
}
<label>Blah</label>
There you go. Where's the error in code? i sure don't see one.