实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
tr.collapse {visibility:collapse;}
6
</style>
7
</head>
8
<body>
9
10
<table border="1">
11
<tr>
12
<td>Peter</td>
13
<td>Griffin</td>
14
</tr>
15
<tr class="collapse">
16
<td>Lois</td>
17
<td>Griffin</td>
18
</tr>
19
</table>
20
21
<p><b>Note:</b> IE8 and earlier support visibility:collapse only if a !DOCTYPE is specified.</p>
22
23
</body>
24
</html>
25