1.colgroup用法
写在table内 thead的上面
用于决定列宽
2.border-collapse 去除边界
table{
border-collapse:collapse;
<!DOCTYPE html>
<html>
<style>
table{
border-collapse:collapse;
}
</style>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<table border=1>
<colgroup>
<col width=100>
<col width=200>
<col width=300>
</colgroup>
<thead>
<tr>
<th>第一列</th>
<th>第二列</th>
<th>第三列</th>
</tr>
</thead>
<tbody>
<tr>
<td>x</td>
<td>y</td>
<td>z</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
</body>
</html>