Blogger Information
Blog 15
fans 0
comment 1
visits 7808
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
3.21作业
银河的博客
Original
553 people have browsed it

HTML部分:

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<link rel="stylesheet" href="../321/321.css">
	<title>321练习</title>
</head>
<body>
	<table width="500" align="center" border="1" cellspacing="0" cellpadding="6">
		<tr>
			<td>1</td>
			<td class="tdcol">2</td>
			<td>3</td>
		</tr>
		<tr>
			<td>4</td>
			<td>5</td>
			<td class="tdcol">6</td>
		</tr>
		<tr>
			<td class="tdcol">7</td>
			<td>8</td>
			<td>9</td>
		</tr>
	</table>
	<div id="item">
		<table width="500" align="center" border="1" cellspacing="0" cellpadding="6">
			<tr>
				<td>2018年好好学习</td>
			</tr>
		</table>
	</div>
</body>
</html>

运行实例 »

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

CSS部分:

实例

td{
	width:120px;
	height:50px;
	text-align: center;
	color:#4031C5;

}
.tdcol{
	color:red;
	background:#af0;
}
#item{
	padding-top: 10px;
}
#item td{
	color:#0C9600;
}

运行实例 »

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


Correction status:Uncorrected

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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!