Blogger Information
Blog 38
fans 0
comment 1
visits 30487
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
323
1
Original
536 people have browsed it

实例

实例
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
	<style type="text/css">
		.t1{
			width: 200px;
			height: 200px;
			text-align: center; /*居中*/
			background-color: #33CC66;
		}
		.t1 a{
			line-height: 200px;
			/*与父元素相同垂直居中*/
		}
		.t2{
			width: 200px;
			height: 200px;
			text-align: center;
			background-color: #33CCCC;
			/*设置显示方式为表单单元格*/
			display:table-cell;
			vertical-align: middle;
			/*设置单元格内的元素垂直居中*/
		}
		.t3{
			width: 200px;
			height: 200px;
			background-color: #330033;

			/*设置显示方式为表单单元格*/
			display: table-cell;
			vertical-align: middle;
			/*设置单元格内的元素垂直居中*/
		}
		.t3-1{
			width: 100px;
			height: 100px;
			/*设置左右对齐居中*/
			margin: 0 auto;
			background-color:#990033;
		}
		.t4 li{	
			list-style: none;
			display: inline;
		}
		.t4{
			width: 200px;
			height: 200px;
			background-color: #CC9999;
			text-align: center;
			/*设置显示方式为表单单元格*/			
			display: table-cell;
			vertical-align: bottom;
			/*下方对齐*/
		}
		.t4 ul{
			/*取消多余的边距*/
			margin: 0px;
			padding: 0px;
		}
	</style>
</head>
<body>
	<div class="t1">
		<a>红红火火恍恍惚惚</a>
	</div>
	<hr>
	<div class="t2">
		<a>红红火火恍恍惚惚</a><br>
		<a>红红火火恍恍惚惚</a>
	</div>
	<hr>
	<div class="t3">
		<div class="t3-1">
		</div>
	</div>
	<hr>
	<div class="t4">
		<ul>
			<li>1</li>
			<li>2</li>
			<li>3</li>
		</ul>
	</div>
</body>
</html>
运行实例 »
点击 "运行实例" 按钮查看在线实例

运行实例 »

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

微信图片_20180325175937.jpg

微信图片_20180325175926.jpg

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
  • 1
    2018-03-16 00:39:40
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!