Ctrl+/
IE11
F11
ESC
PgUp
PgDn
<html>
<head>
<title>Table对象的属性</title>
</head>
<body>
<h2>Table对象的属性</h2>
<hr>
<table id="myTable" border=1>
<tr>
<td>HTML</td>
<td>CSS</td>
</tr>
<td>JavaScript</td>
<td>VBScript</td>
</table>
<form>
<input type="button" onclick="document.all[6].border=3;" value="边框尺寸">
<input type="button" onclick="myTable.frame='above';" value="只有上方边框">
<input type="button" onclick="myTable.cellPadding='10';" value="更改cellPadding">
<input type="button" onclick="myTable.cellSpacing='10';" value="更改cellSpacing">
</form>
</body>
</html>
CSS代码...
JS代码...
xxxxxxxxxx