i'm am having problems with my css rules not being inherited in tables. for example:
<html>
<head>
<title>Untitled</title>
<style>
body {
font-family: Verdana;
font-size: 12px;
}
</style>
</head>
<body>
<p>This is sample text. This is sample text.</p>
<table>
<tr>
<td>This is sample text. This is sample text.</td>
</tr>
</table>
</body>
</html>
when you look at this, the font-size rule is ignored for the text in the table. is this the way its supposed to work?
thanks






Bookmarks