Forum Moderators: not2easy
<html>
<head>
<style type="text/css">
table {
border-collapse: collapse;
}
thead {
background: -moz-linear-gradient(top, #0066ff 0%, #00ff66 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #0066ff), color-stop(100%, #00ff66));
background: -webkit-linear-gradient(top, #0066ff 0%, #00ff66 100%);
background: -o-linear-gradient(top, #0066ff 0%, #00ff66 100%);
background: -ms-linear-gradient(top, #0066ff 0%, #00ff66 100%);
background: linear-gradient(to bottom, #0066ff 0%, #00ff66 100%);
}
th, td {
border: 1px solid #000000;
}
</style>
</head>
<body>
<table>
<thead>
<tr>
<th rowspan="2">Left</th>
<th>Top</th>
<th rowspan="2">Right</th>
</tr>
<tr>
<th>Bottom</th>
</tr>
</thead>
<tbody>
<tr>
<td>a</td>
<td>b</td>
<td>c</td>
</tr>
</tbody>
</table>
</body>
</html>