I want to have 2 types of table styling
- A coloured table border on the outside of the table only
- A coloured table border outside and also on tds
So basically a square box vs a grid, this works in FF but not in IE, can anyone help me colour the tds in the grid in IE?
- A coloured table border on the outside of the table only
- A coloured table border outside and also on tds
So basically a square box vs a grid, this works in FF but not in IE, can anyone help me colour the tds in the grid in IE?
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml">[/URL]
<head>
<title> test</title>
<style>
.NoGrid
{
width:800px;
border-width:1px;
border-style:solid;
border-color: #FFCA5E;
}
.Grid
{
width:800px;
border-width:1px;
border-style:solid;
border-color: #FFCA5E;
}
td.Grid
{
border-width:1px;
border-style:solid;
border-color: #FFCA5E;
}
</style>
</head>
<body>
<table class="NoGrid">
<tr>
<td>
<table class="NoGrid">
<tr>
<td>
<table class="Grid" rules="all">
<tr>
<td>a</td><td>b</td><td>c</td>
</tr>
<tr>
<td>d</td><td>e</td><td>f</td>
</tr>
</table>
</td>
<td></td>
</tr>
</table>
</td>
<td></td>
</tr>
<tr>
<td></td>
</tr>
</table>
</body>
</html>