Blogger Information
Blog 10
fans 0
comment 0
visits 6395
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
课程表案例
俞斌的博客
Original
598 people have browsed it

实例

<!doctype html>
<html>
<head>
	<meta charset="UTF-8">
	<title>表格练习</title>
	<style type="text/css">
		*{
			margin: 0;padding: 0;
		}
		caption{
			margin: 30px;
		}
		table{
			margin: 0 auto;
			width: 600px;
			height: 300px;
			border: 2px solid #080808;
			border-collapse: collapse;
			background: #FF00FF;
			text-align: center;
		}
		th,td{
			border: 2px solid #080808;
		}
	</style>
</head>
<body>
	<table>
		<caption><h1>课程表</h1></caption>
		<tr>
			<th>项目</th><th colspan="5">课程</th><th colspan="2">休息日</th>
		</tr>
		<tr>
			<td>星期</td><td>星期一</td><td>星期二</td><td>星期三</td><td>星期四</td><td>星期五</td><td>星期六</td><td>星期日</td>
		</tr>
		<tr>
			<td rowspan="4">上午</td><td>语文</td><td>数学</td><td>英语</td><td>政治</td><td>历史</td><td>计算机</td><td rowspan="6">休息</td>
		</tr>
		<tr>
			<td>语文</td><td>数学</td><td>英语</td><td>政治</td><td>历史</td><td>计算机</td>
		</tr>
		<tr>
			<td>语文</td><td>数学</td><td>英语</td><td>政治</td><td>历史</td><td>计算机</td>
		</tr>
		<tr>
			<td>语文</td><td>数学</td><td>英语</td><td>政治</td><td>历史</td><td>计算机</td>
		</tr>
		<tr>
			<td rowspan="2">下午</td><td>语文</td><td>数学</td><td>英语</td><td>政治</td><td>历史</td><td>计算机</td>
		</tr>
		<tr>
			<td>语文</td><td>数学</td><td>英语</td><td>政治</td><td>历史</td><td>计算机</td>
		</tr>
	</table>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:qualified

Teacher's comments:作业的标题有待改进
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post