I copied the stylesheet part and it is. I also checked for thing in the tables, none. The actual font effects the table, just not sizes on them. Am I missing something here?
Heres the page I'm trying to put it in.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<link rel="stylesheet" href="layout_beta.css" type="text/css">
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title></title>
</head>
<body>
Bill/Jill, is dead!
<table style="text-align: left; width: 100%;" border="1" cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td>bbbb</td>
</tr>
</tbody>
</table>
<br>
</body>
</html>
And then heres the external stylesheet.
Code:
body {
background-color : #e2e2e2;
}
body {
font-family:arial, sans-serif;
font-size:85%;
}
A:link {
text-decoration : underline;
color : blue;
}
A:visited {
text-decoration : underline;
color : blue;
}
A:hover {
text-decoration : none;
color : black;
}
Bookmarks