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 Chriss 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 Borders?

Status
Not open for further replies.

jchastai

Programmer
Joined
Oct 11, 2001
Messages
31
Location
US
How do I go about duplicating the border attribute of the table tag in CSS?

I have tried both border-color and border-top (bottom, etc), but they only effect the border around the outside edge of the table. All of the borders in between cells disappear.

How do you manipulate all of the borders?

Thanks
Jeff Chastain
 
This should do it:

table {
border : 1 solid Black;
}

1 = meaning the width
solid = meaning the style
Black = meaning the color
 
try this on for size:

<style>
TABLE{BORDER: NONE;}
</style>

BobbaFet Everyone has a right to my opinion.
E-mail me at caswegkamp@hotmail.com
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top