Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

problem with table sizes 1

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
How come that tables created with dreamweaver with specified column widths (i.e. 30%) are not respected when opened with netscape navigator?
 
Try specifying table widths as pixels and not percentages- this somethimes does the trick,

Also cells must contain data- even if just a page break or non breaking space otherwise netscape 'collapses them'

If you had a a 3 by 3 table for example you wouldnt need the npbs in every cell just the outside ones- like this

<table width=&quot;100&quot;>
<tr>
<td>&amp;nbsp;</td>
<td>&amp;nbsp;</td>
<td>&amp;nbsp;</td>
</tr>
<tr>
<td>&amp;nbsp;</td>
<td></td>
<td></td>
</tr>
<tr>
<td>&amp;nbsp;</td>
<td></td>
<td></td>
</tr>
</table> Caspar Kennerdale
Senior Media Developer
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top