Table 边框合并(collapse)

border-collapse:collapse

用于表格属性, 表示表格的两边框合并为一条;

<style type="text/css">
table
  {
  border-collapse:collapse;
  }

table, td, th
  {
  border:1px solid black;
  }
</style>
<table>
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Bill</td>
<td>Gates</td>
</tr>
<tr>
<td>Steven</td>
<td>Jobs</td>
</tr>
</table>

结果:

 

原文地址:https://www.cnblogs.com/sxhlf/p/6726040.html