Alright so I realize i was just being dumb, heh. Try this instead:
Code:
.maincolumn {
border: 0px;
background: #FF0000;
}
.maincolumn div {
width: 100%;
height: 100%;
}
.maincolumn div:hover {
background: #CCCCCC;
}
And then instead of using:
Code:
<td class='maincolumn'> whatever </td>
use
Code:
<td class="maincolumn"><div> whatever </div></td>