HTML 表格的表頭
提問人:劉團圓發(fā)布時間:2020-10-10
html>
<body>
<h4>有表頭的表格:</h4>
<table border="1">
<tr>
<th>姓名</th>
<th>電話</th>
<th>傳真</th>
</tr>
<tr>
<td>Bill Gates</td>
<td>555 77 854</td>
<td>555 77 855</td>
</tr>
</table>
<h4>豎直方向的表頭:</h4>
<table border="1">
<tr>
<th>姓名</th>
<td>Bill Gates</td>
</tr>
<tr>
<th>電話</th>
<td>555 77 854</td>
</tr>
<tr>
<th>傳真</th>
<td>555 77 855</td>
</tr>
</table>
</body>
</html>
繼續(xù)查找其他問題的答案?
相關(guān)視頻回答
點擊加載更多評論>>