View Full Version : table positioning


zipper
04-23-2003, 07:56 PM
does anyone know how to make a table with 3 sections in it that are all the same height and same width with a little space between them? thanks

the_dark_one02
04-24-2003, 09:42 PM
This is a way to make 3 cells go into a table with 5 pixels spacing around them

<html>
<head>
</head>
<body>
<table border="1" bordercolor="#000000" width="320" cellspacing="5" cellpading="0">
<tr>
<td>
First Cell
</td>
<td>
Second Cell
</td>
<td>
Third Cell
</td>
</tr>
</table>
</body>
</html>