Table border

windows

Guest
I am trying to build a table with two columns, with a border around the second column. Everything I try doesn't seem to work. In this example, I would like to have a border arouond the "Blah Blah" section. <br />
<br />
However, if I place a <TD width="460" border="2"> for the tag, I get nothing. I then added the word BORDER to the initial <table> tag. Still nothing. I can only get a border to surround both columns or I can't get a border to appear at all. Any advice?<br />
<br />
<br />
<TABLE><br />
<TR VALIGN=TOP><br />
<TD width="125"><u>First Section</u></TD><br />
<TD width="460">Blah Blah<BR>Blah<BR>Blah Blah<BR>Blah</TD><br />
</TR><br />
</TABLE><!--content-->tables don't work that way. you have to have a border around the whole table or you can nest tables. you idea you will have to nest tables.<br />
<br />
<TABLE width=100%> <br />
<TR VALIGN=TOP> <br />
<TD width="125"><u>First Section</u></TD> <br />
<TD width="460"><br />
<table border=1 bordercolor="#ff0000" width=100%><br />
<tr><br />
<td>Blah Blah<BR>Blah<BR>Blah Blah<BR>Blah</td><br />
</tr><br />
</table><br />
</TD> <br />
</TR> <br />
</TABLE><!--content-->Huh. Interesting, I didn't know that. Thanks so much for your help. I appreciate it.<!--content-->your welcome :)<!--content-->
 
Back
Top