<table>
<thead>
<tr>
<th> Column 1</th>
</tr>
</thead>
<tbody>
<tr>
<td>Header 1</td>
</tr>
<tr>
<td> Row 1</td>
<td> Row !</td>
<td> Row 1</td>
</tr>
</tbody>
</table>
无法获得表头的全宽以及正文的任何帮助
答案 0 :(得分:2)
您需要添加colspan ="3"
,因为row
中有最多3列。
table{
width:100%;
}
thead{
background-color: #eee;
width:100%;
}
tbody{
width: 100%;
}
&#13;
<table width="100%">
<thead>
<tr>
<th colspan="3"> Column 1</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="3">Header 1</td>
</tr>
<tr>
<td> Row 1</td>
<td> Row !</td>
<td> Row 1</td>
</tr>
</tbody>
</table>
&#13;