the text colors change like you would expect, but it's all on a white background in both IE and Opera. It seems that my background: blue is being ignored. Any ideas?
the css:
and the html:
Brad Gunsalus
Cymtec Systems, Inc.
bgunsalus@cymtec.com
the css:
Code:
<style type="text/css"><!--
body {
background: blue;
}
h2 {
font-family: Arial, Helvetica, sans-serif;
color: rgb(0,51,144);
}
th {
font-size: 8pt;
color: rgb(200,200,0);
}
td {
font-size: 6pt;
color: maroon;
}
--></style>
and the html:
Code:
<html>
<head>
<title>Test of Styles</title>
<link rel="stylesheet" href="css/sample.css" type="text/css">
</head>
<body>
<h2>This is a stylish sample</h2>
<table width="300" border="0" cellspacing="0" cellpadding="0">
<tr>
<th width="300" height="100" align="center" valign="center">This is a header</th>
</tr>
<tr>
<td height="100" align="center" valign="center">This is data</td>
</tr>
</table>
</body>
</html>
Cymtec Systems, Inc.
bgunsalus@cymtec.com