Thread: Table cells
Results 1 to 2 of 2
Related
-
Bkgd image in table cells? Forum: Myspace Forum
Replies: 1 -
Image over two table cells Forum: HTML Forum
Replies: 5 -
Creating Hyperlinks in Table Cells Forum: HTML Forum
Replies: 2 -
Padding individual table cells? Forum: CSS Forum
Replies: 1
-
11-01-2000, 05:57 PM #1
Cells...
How would I make two cells side by side? I know how do make a cell, but not two cells side by side. Or even three:
<table bgcolor="gray" border="1" width="30%" cellpadding="1" cellspacing="0">
<tr>
<th>
<img src="?">
</th>
</tr>
</table>
So, what would I add to this cell to make it so I can connect another one to the side of it?
-
11-01-2000, 06:21 PM #2
<table>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
you can sub TH for the TD if you want these to be header cells, and do not forget all the other attributes (width,align,valign...)
Dave