HTML
<table>
<tr>
<td>items</td>
<td class="right">more items</td>
</tr>
</table>
CSS
table
{
border:10px solid green;
}
td
{
padding:20px;
background-color:gray;
}
.right
{
position:relative;
}
The code shows a consistent green border for Chrome 13, Safari 5, and IE7 browsers. However, it appears differently in IE9, IE8, FF5, FF4, and FF3.6.
Is there a way to achieve a uniform border around the table while still maintaining position:relative
in the right cell?