Blogger Information
Blog 18
fans 0
comment 0
visits 9657
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
第7章 3_23元素居中_背景_列表与链接-作业
唐朝的博客
Original
481 people have browsed it

WX20180327-151144@2x.png

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
		body{
			display: flex;
			justify-content: space-around;
		}
		hr{
			width: 150px;
			margin-left: 0;
		}
		.box1{
			width: 200px;
			height: 200px;
			background-color: #708090;			
			display: table-cell;
			vertical-align: middle;
		}
		 .box11{
			background-color: #996633;
			width: 100px;
			height: 100px;
			margin: auto; 
			text-align: center;	
		}
		.box11 a{
			line-height: 100px; 
		}
		.box2{
			width: 200px;
			height: 200px;
			background-color: #FC0107;			
			display: table-cell;
			vertical-align: middle;
		}
		.box21{
			text-align: center;
			color: #fff;
		}
		.box3{
			width: 200px;
			height: 200px;
			background-color: #0F80FF;			
			display: table-cell;
			vertical-align: bottom;
			text-align: center;
		}
		
	</style>
</head>
<body >	
	<div>
		<div class="box1">
			<div class="box11"><a >行内元素</a></div>
		</div>
	</div>
	<div>
		<div class="box2">
			<div class="box21"><span>1.文本1</span><br><span>2.文本2</span></div>
		</div>
	</div>
	<div>
		<div class="box3">
			<p>底部文本</p>
		</div>
	</div>
</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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!