|
|
Table Object border Property
Table Object
Definition and Usage
The border property sets or returns the width (in pixels) of the table border.
Syntax
|
tableObject.border=pixels
|
Example
Example
Change the width of the table border
<html>
<head>
<script type="text/javascript">
function changeBorder()
{
document.getElementById('myTable').border="10"
}
</script>
</head>
<body>
<table border="1" id="myTable">
<tr>
<td>100</td>
<td>200</td>
</tr>
<tr>
<td>300</td>
<td>400</td>
</tr>
</table>
<br />
<input type="button" onclick="changeBorder()"
value="Change Border">
</body>
</html>
|
Try it yourself »
|
Table Object
|
|
|