How do I create Three-Column Layouts?

liunx

Guest
Such as the one at Canucks Central? <!-- m --><a class="postlink" href="http://www.canuckscentral.com">http://www.canuckscentral.com</a><!-- m --><!--content-->Hey I think I got it but how do I make the border around the whole thing to be black?<br />
<!-- m --><a class="postlink" href="http://www.geocities.com/froggyvk2/left.html">http://www.geocities.com/froggyvk2/left.html</a><!-- m --><!--content-->Hi froggyvk,<br />
<br />
in your example code you do not need to use the rowspan=3 attribute at all, you have a simple three column table, unless you add more rows you do not need to use rowspan. To get the border you must have a border, you only have a border color:<br />
<br />
<table width="100%" height="100%" bordercolor="black" border="2" cellpadding="2" cellspacing="0"> <br />
<tr> <br />
<td valign="top" width="150" bgcolor=black>content here</td><br />
<td valign="top" width="450" bgcolor=white>content here</td><br />
<td valign="top" width="150" bgcolor=black>content here</td><br />
</tr><br />
</table><!--content-->
 
Back
Top