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

css- table boarders

Status
Not open for further replies.

help120

Technical User
Apr 15, 2001
198
US
I want to only set the boarder color of the left and right side of the table.
v-----------(no boarder color)
---------------
| |
---> | |<---------(bordercolor=&quot;#FFAE00&quot;)
| | |
| | |
| ---------------
| ^-------------------(no boarder color)
|
|____________(bordercolor=&quot;#FFAE00&quot;)
 
Add this style to the <table> tag or put it in a stylesheet:

<table border=&quot;1&quot; style=&quot;border-left: 6px solid #FFAE00; border-right: 3px solid green;&quot;>

You can also change the cellpadding and cellspacing to &quot;0&quot; to avoid white space between the table-borde and the cellborders. see the next example:

<table border=&quot;1&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;border-left: 6px solid #FFAE00; border-right: 3px solid green;&quot;>
<tr>
<td style=&quot;border-left: 2px solid red&quot;> aaaa
</td>
<td style=&quot;border:2px solid yellow&quot;> bbbb
</td>
<td style=&quot;border:none&quot;> cccc
</td>
</tr>
<tr>
<td> dddd
</td>
<td> eeee
</td>
<td style=&quot;border:none&quot;> ffff
</td>
</tr>
</table>

Hope this helps,
Erik
 
hehe.. well ship :0) and this little code will do the top and bottom of the table.

<div align=&quot;center&quot;>
<center>
<table border=&quot;0&quot; style=&quot;border-bottom: 6px solid #FFAE00; border-top: 3px solid green;&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;
style=&quot;border-collapse: collapse&quot; bordercolor=&quot;#111111&quot; width=&quot;100%&quot;
id=&quot;AutoNumber1&quot;>
<tr>
<td width=&quot;100%&quot;> </td>
</tr>
</table>
</center>
</div>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top