I have a table with class DE:
.DE
{ font-family:Verdana,Arial,Helvetica,sans-serif;
font-size:75%;
}
and I want my form fields to be 85% of default, so inside the table i have:
<input type="text" class="Regular" name="blat">
.Regular {
font-size:85%;
font-family:Verdana, Arial, Helvetica, sans-serif;
color: black;
background:#F9FADF; }
The problem is my form fields are 85% of 75%, because they are further modifying the DE class. How do I make them simply 85%?
Please advise, thanks.






Bookmarks