Just a quick question. Is there a way to put a border around an entire table without bordering each cell? I just want the entire table outlined. Thanks!
Thanks! That worked! Just for everyone's FYI, I checked the documentation, (When all else fails, read the directions, right?) and it mentions a FRAME attribute you can use in conjuntion with the BORDER attribute. You would code FRAME="BOX" in the main TABLE tag to get what I was asking for. However, only EXPLORER supports this attribute. I tried it, and it didn't work. (I have IE 5.0) I wouldn't want to do anything only one browser supported, anyway.
Youcan also position a table w/ border size "0" inside of a table with border size 1. as follows. This will give you the effect you are looking for. I hope this helps.
<div align="left">
<table border="1" cellpadding="0" cellspacing="0" bordercolor="#FF0000">
<tr>
<td>
<div align="left">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td>Your data here</td>
<td>your data here</td>
</tr>
<tr>
<td>your data here</td>
<td>your data here</td>
</tr>
</table>
</div>
</td>
</tr>
</table>
</div>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.