HTML Table Bordercolordark

The table attribute borderdark is opposite to bordercolorlight. This is done by giving a dark color to the border while displaying the three dimensional effect to the table . this is done by giving a lighter color to the border while displaying a three-dimensional table. Any of the predefined or any color defined by the rrggbb hexadecimal can be used. To run this attribute , it is necessary for the BORDER attribute to be define in the table tag.

Example for HTML Table Bordercolordark

<!Doctype HTML>
<html>
<Head>
<Title>Your Web site Title</Title>
</Head>
<Body >
<table border=10 bordercolordark=0000ff>
<tr > <td>Sno</td ><td>Name</td ></tr>
<tr > <td>1</td ><td>Johan</td ></tr>
</table>