table 边框合并

Posted 荆棘中的百合花

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了table 边框合并相关的知识,希望对你有一定的参考价值。

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>

结果:

 

 

以上是关于table 边框合并的主要内容,如果未能解决你的问题,请参考以下文章