Blogger Information
Blog 55
fans 0
comment 0
visits 30756
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
3月22日作业
老专的博客
Original
591 people have browsed it

补做3月22日作业

代码:

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>作业:管理员列表</title>
	<style>
		#t1 {
			width: 600px;
			margin: 10px, auto;
			background-image: url(images/11.jpg);
            border-radius: 20px;
            box-shadow: 5px 5px 5px blue;
            border: 2px solid red;
		}
		th {
			background-color:blue;
			color: yellow;
			font-size: 1.4em;
		}
		td {
			text-align: center;
			font-size: 1.2em;
			color:yellow;
			padding: 10px;
		}
		h2 {
			color: blue;
		}
	</style>
</head>
<body>
	<table id="t1">
	<caption><h2>管 理 员</h2></caption>
	<tr id="t2">
		<th>ID</th>
		<th>昵称</th>
		<th>密码</th>
		<th>级别</th>
	</tr>

		<tr class="t1">
			<td>1001</td>
			<td>姥姥</td>
			<td>gull11</td>
			<td>管理员</td>
		</tr>
		<tr class="t1">
			<td>1002</td>
			<td>老爷</td>
			<td>ffqq22</td>
			<td>管理员</td>
		</tr>
		<tr class="t1">
			<td>1003</td>
			<td>爷爷</td>
			<td>yyrr33</td>
			<td>经理</td>
		</tr>
	
	</table>
</body>
</html>

运行实例 »

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

代码执行结果图片:

51.png


手写代码图片:

52.jpg

53.jpg

54.jpg






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