您的位置:首页 > Web前端 > HTML5

html5 表格

2016-04-06 19:00 295 查看
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>html 表格</title>
</head>
<body>
<!--<table>
<caption>表格标题</caption>
<tr>
<th>单元</th>
<th>单元</th>
<th>单元</th>
</tr>
<tr>
<td>单元格1</td>
<td>单元格1</td>
</tr>
<tr>
<td>单元格1</td>
<td>单元格1</td>
</tr>
</table>-->

<!--<table>
<caption>带有标签的表格</caption>
<tr>
<th>单元</th>
<th>单元</th>
<th>单元</th>
</tr>
<tr>
<td><ul>
<li>菠萝</li>
<li>菠萝</li>
<li>菠萝</li>
</ul></td>
<td>我想买了</td>
</tr>
</table>-->
<table border="1" cellpadding="20">
<caption>单元格的边距</caption>
<tr>
<th>单元</th>
<th>单元</th>
<th>单元</th>
</tr>
<tr>
<td>test</td>
<td>我想买了</td>
<td>test</td>
</tr>
</table>

<table border="1" cellspacing="20" bgcolor="aqua" background="背景图片.jpg">
<caption>单元格的间距</caption>
<tr>
<th>单元</th>
<th>单元</th>
<th>单元</th>
</tr>
<tr>
<td>test</td>
<td>我想买了</td>
<td>test</td>
</tr>
</table>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: