11.2显示表格的空单元格

来源:互联网 发布:go语言实现网络爬虫 编辑:程序博客网 时间:2024/05/16 13:48

<html>
<head>
<style type="text/css">
table
{
border-collapse: separate;
empty-cells: show
}
</style>
</head>
<body>

<table border="1">
<tr>
<td>Adams</td>
<td>John</td>
</tr>
<tr>
<td>Bush</td>
<td></td>
</tr>
</table>

</body>
</html>

 

 AdamsJohnBush 

原创粉丝点击