返回 熟悉合并行 合...... 登陆

熟悉合并行 合并列

阿涛 2019-06-06 23:03:31 181
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>HTML中常用标签--表格(tabal)</title>
	<style type="text/css">
	*{margin:0px;padding: 0px;}
		table{border: 1px solid #ccc;border-collapse: collapse;}
		tr td{height: 200px; border: 1px solid #ccc;width: 100px}
	</style>
</head>
<body>
	<h1>表格</h1>
	<table>
		<tr>
			<th>1</th>
			<th>2</th>
			<th>3</th>
			<th>4</th>
			<th>5</th>
		</tr>
		<tr>
			<td colspan="5">合并列</td>
		</tr>
		<tr>
			<td rowspan="2">合并行 1</td>
			<td>2</td>
			<td rowspan="2">合并列</td>
			<td colspan="2">合并行</td>
			
		</tr>
		<tr>
			<td>2</td>
			<td>3</td>
			<td>4</td>
		</tr>
	</table>
</body>
</html>

最新手记推荐

• 用composer安装thinkphp框架的步骤 • 省市区接口说明 • 用thinkphp,后台新增栏目 • 管理员添加编辑删除 • 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消 回复 发送
  • PHP中文网