tables question

liunx

Guest
I have a 4 cell table set up that includes text and 2 small icons in each cell. The table is set as<br />
table cellpadding="10" border="1" width="100%"<br />
<br />
So why would the cells be different sizes? The icons are all the same size and each cell begins with div align="justify".<br />
<br />
The cells are not set at a specific size so I can't figure out why they are different sizes. The amount of text in each shouldn't affect the width of the cell.<!--content-->Originally posted by km01grant <br />
The amount of text in each shouldn't affect the width of the cell. But it does. If you want the cells to be the same size, in your first <tr> add width to each <td> something like this:<br />
<br />
<tr><br />
<td width="25%"></td><br />
<td width="25%"></td><br />
<td width="25%"></td><br />
<td width="25%"></td><br />
</tr><!--content-->Thanks, that worked and don't know why I didn't think of doing that to begin with. <br />
<br />
One more question...How would I make an outline of the cell or table where the lines come up to the meet the heading at the top. I'm not talking about the border size of the table but I can't think of the name of it or where I saw the instructions for it.<!--content-->Could you be more specific?<!--content-->
 
Back
Top