I want to make a table in the center of my window. The align attribute of the table-tag works fine but how can I make the table in the middle of the heigth of the window(valign doesn't work in the table-tag)??
And if you know how to do that, does it work in IE and NC?
Erik
This is my sample code:
<body>
<table align="center" height="250" width="250" cellspacing="0" border="3">
<tr>
<td>1<td>2<td>3
</tr>
<tr>
<td>4<td>5<td>6
</tr>
<tr>
<td>7<td>8<td>9
</tr>
</table>
</body>