You can apply colors to the TRs to effect all the TDs:
(tested in Firefox and IE)
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html dir="ltr" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<style type="text/css">
body{font:1.2em arial,sans-serif;direction:ltr;margin:0;background-color:white;color:black;}
table{padding:0;margin:0;}
table.smallTable tr.even{background-color: rgb(238,238,238);color:black;}
table.smallTable tr.odd{background-color:white;color:black;}
</style>
<title></title>
</head>
<body>
<table class="smallTable">
<colgroup span="4">
<col width="60">
<col width="60">
<col width="60">
<col width="60">
</colgroup>
<tbody>
<tr class="even">
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr class="odd">
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr class="even">
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr class="odd">
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
</tbody>
</table>
</body>
</html>
Bookmarks