I have a code in .css file:
....
body {
background: red;
font: 70%/1.5em Verdana, Tahoma, arial, sans-serif;
color: #777;
margin: 15px 0;
}
...
In the html file, there is a form:
<body>
....
<div>
<form>
<table>
<tr><td>name</td><td><input ..../></td></tr>
<tr><td>address</td><td><input ..../></td></tr>
</table>
</form>
</div>
....
</body>
In form: "name" and "address" etc do not follow the body's rule, such as "name" and "address" do not use:
font: 70%/1.5em Verdana, Tahoma, arial, sans-serif;
Is there anyone tell me why? What's wrong with this?