Forum Moderators: not2easy
html:
<form>
<label class="top_label">Blah...</label>
</form>
<form>
<label class="bottom_label">Blah...</label>
</form>css:
.top_label{
color:#000;
}
.bottom_label{
color:#fff;
}
A somewhat less labor intensive version would be to assign each FORM a unique id (which is a good idea, anyway) and then use the cascade to hit the labels within each one...
html:
<form id="top_form">
<label>Blah...</label>
</form>
<form id="bottom_form">
<label>Blah...</label>
</form>css:
#top_form label{
#000;
}
#bottom_form label{
color:#fff;
}
cEM