Sabre-Hosting
01-16-2003, 11:02 PM
I have a table but want a border round only one of these cells how do I do it?
Thanks in advance :)
Thanks in advance :)
|
View Full Version : Border Round 1 Cell Sabre-Hosting 01-16-2003, 11:02 PM I have a table but want a border round only one of these cells how do I do it? Thanks in advance :) Kittie 01-16-2003, 11:53 PM is that possible? i dont think i've ever see it done before... you could probably like make a table and then have another table with the boarder and then align it with the bigger table to get it to look like it... of coarse that would be time consuming and a whole lot of work... you could make a background for a table to look like the bg of the page, and then give that one cell a colored thing...you'd have to align that with how big your table is... uh...again..is it possible? Alcy 01-17-2003, 12:03 AM Yes, it is possible. Just add style="border:1px solid;" to your table column tag :). For example: <table width=200 cellpadding=0 cellspacing=0 border=0> <tr> <td width=100>hi</td> <td width=100 style="border:1px solid;">hi</td> </tr> </table> |