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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Table bordercolor commands?

Status
Not open for further replies.
Jun 9, 2001
1
0
0
US
I'm trying to convert this table layout to css... :(

<table bordercolorlight=&quot;#000000&quot; bordercolordark=&quot;#808080&quot; border=1 cellpadding=0 cellspacing=0 bgcolor=&quot;#364552&quot;>

I cant seem to find the command for the bordercolordark and light.

This is what i have working so far...

.tablebg {background-color: #808080}
.headercolor {center; background-color: #353453}



Any help is appreciated! :)

 
hmmm i don't know the answer, but here is something that's look a little bit the same, so maybe you can try some differences with my example.

Try to change things like inset, outset, groove and some colors you like:

for the table:
<table style=&quot;BORDER-BOTTOM: #808080 inset 1pt;
BORDER-LEFT: #808080 inset 1pt;
BORDER-RIGHT: #808080 inset 1pt;
BORDER-TOP: #808080 inset 1pt&quot;

For the cells:
<td style=&quot;BORDER-BOTTOM: #808080 outset 1pt;
BORDER-LEFT: #808080 outset 1pt;
BORDER-RIGHT: #808080 outset 1pt;
BORDER-TOP: #808080 outset 1pt&quot;

Hope it helps yoy a little,

Erik
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top