Press "Enter" to skip to content

htmltableBodercolorlight

HTML table Bodercolorlight

The table attribute bordercolorlight is to give a 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 Bodercolorlight

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