How do I do the following HTML tag in CSS?
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0>
---
If I setup my style sheet as follows ...
TABLE
{
border: 0px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
padding-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
padding-top: 0px;
}
I am not getting a border, but I still have padding around the table and cells.
Slightly different, how do I setup the following HTML using CSS ...
<TABLE BGCOLOR=#0000FF BORDER=0 CELLPADDING=0 CELLSPACING=1>
... which gives me a one pixel, solid border around both the table and each cell?
Thanks
Jeff Chastain
<TABLE BORDER=0 CELLPADDING=0 CELLSPACING=0>
---
If I setup my style sheet as follows ...
TABLE
{
border: 0px;
margin-bottom: 0px;
margin-left: 0px;
margin-right: 0px;
margin-top: 0px;
padding-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
padding-top: 0px;
}
I am not getting a border, but I still have padding around the table and cells.
Slightly different, how do I setup the following HTML using CSS ...
<TABLE BGCOLOR=#0000FF BORDER=0 CELLPADDING=0 CELLSPACING=1>
... which gives me a one pixel, solid border around both the table and each cell?
Thanks
Jeff Chastain