Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CSS Table cellspacing

Status
Not open for further replies.

Esoteric

ISP
Feb 10, 2001
93
US
Can this be set within the style sheet? I cannot find any reference to this. Want to set it in the style sheet if at all possible.
 
Maybe something like this will do the trick:
table {
border-collapse: collapse;
border-bottom: 0px;
border-left: 0px;
border-right: 0px;
padding: 0px;
margin: 0px;
}
Be sure to include border-collapse or you will get a 1px border hanging around.

Mickey
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top