Table Forum='box'

Hello,<br />
<br />
I am using IE 5.5 and Netscape 4.8. I am using the TABLE tag extension FRAME. EG.<br />
<TABLE cellspacing='0' cellpadding='3' cols='2' frame='box' rules='cols'>.<br />
<br />
It creates a nice box around my data. <br />
<br />
It works in IE but not in Netscape. I tried using the border extension but that puts a border around each cell. Not what I want. Is there an alternative to use in Netscape to get the same look as in IE. <br />
<br />
Thanks for your help,<br />
Michael<!--content-->You could nest your table inside another table, this outer table having just one row and one table data element within that row. Define this outer table to have a border, then the one single cell inside that table with have a border round it. There may be other solutions, but this is one of the simplest.<br />
<br />
<table border="1" additional attributes as required ><tr><br />
<br />
<td> existing table code here </td><br />
<br />
</tr></table><!--content-->Thanks Giz, your suggestion worked.<!--content-->
 
Back
Top