案例:CSS3 案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
3
<html>
4
<head>
5
<style type="text/css">
6
table
7
{
8
border-collapse: separate;
9
empty-cells: hide;
10
}
11
</style>
12
</head>
13
<body>
14
15
<table border="1">
16
<tr>
17
<td>Adams</td>
18
<td>John</td>
19
</tr>
20
<tr>
21
<td>Bush</td>
22
<td></td>
23
</tr>
24
</table>
25
26
<p><b>注释:</b>如果已规定 !DOCTYPE,那么 Internet Explorer 8 (以及更高版本)支持 empty-cells 属性。</p>
27
28
</body>
29
</html>
30