案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
tr.coll
5
 {
6
 visibility:collapse
7
 }
8
</style>
9
</head>
10
<body>
11
12
<table border="1">
13
<tr>
14
<td>Adams</td>
15
<td>John</td>
16
</tr>
17
<tr class="coll">
18
<td>Bush</td>
19
<td>George</td>
20
</tr>
21
</table>
22
23
</body>
24
</html>
25