It works when I veiw it in Dreamweaver/Design but it does not work in either IE or Firefox.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<HTML>
<head>
<TITLE>Test File</TITLE>
<style type="text/css">
<!--
body {
scrollbar-face-color:#000000;
scrollbar-highlight-color:#DDFFFF;
scrollbar-3dlight-color:#FFFFFF;
scrollbar-darkshadow-color:#000000;
scrollbar-shadow-color:#6699FF;
scrollbar-arrow-color:#669999;
scrollbar-track-color:#F63E00;
}
P {font-family:"ARIAL" font-color:"#F63E00"}
.other {font-family:"COURIER"}
table {
background-color:#FFF;
width:100%;
border-collapse:collapse;
border:2px solid red;
}
/* the border will be defined by the td tags */
th.BorderMeRed {
background-color:#000;
border:2px dashed red;
padding:10px;
}
/* let's do a blue... */
td.BlueWho {
background-color:#FFF;
border:2px solid blue;
padding:15px;
}
-->
</style>
</head>
<body>
<table width="95%">
<tr>
<th class="BorderMeRed"><p>BBBBBBB</p></th>
<th class="BorderMeRed">BBBBBBBBB</th>
</tr>
<tr>
<td class="BlueWho"><p>BBBBBBBB</p></td>
<td class="BlueWho">BBBBBBBBB</td>
</tr>
</table>
</body>
</HTML>




