11表格元素下

来源:互联网 发布:手机淘宝体检中心登录 编辑:程序博客网 时间:2024/06/06 00:05
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title>表格元素下</title>
</head>
<body>
<table border="1">
<colgroup span="1" style="width:200px">
<col style="background:red"></col>
</colgroup>
<colgroup span="3" style="width:200px">
<col style="background:red"></col>
<col style="background:green"></col>
<col style="background:yellow"></col>
</colgroup>
<colgroup span="1" style="width:200px  ;  background:red">
</colgroup>
<tr><th>标题行</th><th>标题行</th><th>标题行</th><th>标题行</th><th>标题行</th></tr>
<tr><td>单元格</td><td>单元格</td><td>单元格</td><td>单元格</td><td>单元格</td></tr>
<tr><td>单元格</td><td>单元格</td><td>单元格</td><td>单元格</td><td>单元格</td></tr>
<tr><td>单元格</td><td>单元格</td><td>单元格</td><td>单元格</td><td>单元格</td></tr>
</table>
<br>
<table border="1">
<thead>
<tr><th colspan="5">标题行</th></tr>
</thead>
<tbody  style="background:green">
<tr><td>单元格</td><td>单元格</td><td>单元格</td><td>单元格</td><td>单元格</td></tr>
<tr><td>单元格</td><td>单元格</td><td>单元格</td><td>单元格</td><td>单元格</td></tr>
<tr><td>单元格</td><td>单元格</td><td>单元格</td><td>单元格</td><td>单元格</td></tr>
</tbody>
<tfoot>
<tr><td>备注:</td><td colspan="4"></td><tr>
</tfoot>
</table>
</body>
</html>

原创粉丝点击