Beror på hur du vill ha kolumn resp. rader.
Slängde ihop ett exempel.
<html>
<head>
<style type="text/css">
<!--
html, body {background-color:green; margin:3 3 3 3}
table {background-color:blue;border:1px solid black; border-collapse:collapse; width:100%; height:100%;}
td {width:50%; height:50%; border:1px solid black; border-collapse:collapse}
.tabell2 {background-color:red;border:1px solid black; border-collapse:collapse; width:100%; height:100%;}
-->
</style>
</head>
<body>
<table>
<tr>
<td>tabellcell i stora tabellen</td>
<td>
<table class=tabell2>
<tr>
<td>cell 1 i tabell 2</td>
</tr>
<tr>
<td>cell 2 i tabell 2</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>