html tbody thead tr td能够一起使用吗
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html tbody thead tr td能够一起使用吗相关的知识,希望对你有一定的参考价值。
可以的,tbody thead 可以不写,浏览器会自动加上这两个写成下面这种结构就行。
<!doctype html><html lang="en">
<head>
<meta charset="UTF-8">
<title>EditDoc</title>
</head>
<body>
<table border=1>
<tr>
<td>1-1</td>
<td>1-2</td>
</tr>
<tr>
<td>2-1</td>
<td>2-2</td>
</tr>
</table>
</body>
</html> 参考技术A 可以的。没问题 参考技术B 可以呀,可以一起使用呀。
表格的标准格式
表格的标准结构
<table>
<thead>
<tr>
<td></td>
<td></td>
</tr>
</thead>
<tbody>
<tr>
<td></td>
<td></td>
</tr>
</tbody>
<tfoot>
<tr>
<td></td>
<td></td>
</tr>
</tfoot>
</table>
table>tr*3>td*3
<table border="1" width="500" height="300" aligh="center">
<caption>表头<caption>
ctrl+鼠标左键 集体输入
colspan 同一行单元格合并
rowspan 同一列单元格合并
表格标题、边框颜色、内容垂直对齐
<th></th> 标题(颜色加粗)
bordercolor="red" 边框颜色
内容垂直对齐方式
valign="top"/"middle"/"bottom"
细线表格
以上是关于html tbody thead tr td能够一起使用吗的主要内容,如果未能解决你的问题,请参考以下文章