IE (og kloner !-) only, kan ikke lige huske hvad det er du skal med de andre:
<!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"
"
http://www.w3.org/TR/html4/loose.dtd"><html>
<head>
<title>Automatisk højde på td</title>
<meta name="keywords" content="roenving;
http://www.eksperten.dk/spm/431479"><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
table{
border-collapse:collapse;
}
td{
border:1px solid black;
width:12px;
}
</style>
<script type="text/javascript">
function resTd(){
t = document.getElementsByTagName('TD');
h = t[0].clientHeight;
for(i=0;t.length>i;i++){
t[i].style.width = h + 'px';
}
}
</script>
</head>
<body onload="resTd()">
<table>
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
<tr>
<td>
</td>
<td>
</td>
<td>
</td>
</tr>
</table>
</body>
</html>