Forum Moderators: not2easy
border-collapse:collapse; works, but in chrome and safari there is a 1px region between cells which has the background-color of the proceeding cell or its contents, yet it not part of that cell. I have only observed this issue with Chrome 14.0.835.202 and Safari 5.1 on Windows XP. <!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>
<title>table test</title>
<style type='text/css'>
* {margin:0; padding:0; border:0; outline:0;}
body {padding:20px;}
table {width:200px; height:50px; border-collapse:collapse; border-spacing:0;
background:#0f0;}
td {width:20%; background:#000;}
td:hover {background:red;}
</style>
</head>
<body>
<table><tr>
<td></td>
<td></td>
<td></td>
</tr></table>
</body>
</html>
[edited by: alt131 at 11:15 am (utc) on Oct 24, 2011]
[edit reason] Side Scroll [/edit]
I've found that you can work around this by making the cell's content extent 1px outside the cell