Blogger Information
Blog 64
fans 2
comment 1
visits 46860
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
常用的四种对齐方式总结——2018年3月23日
Y的博客
Original
890 people have browsed it

代码:

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>CSS元素对齐技巧</title>
	<style type="text/css">
     .a {
     	width: 200px;
     	height: 200px;
     	background-color:#FF8C00;
     	text-align: center; /*可以使内部行内元素水平居中*/
     	
     }
     .a a {
        line-height: 200px; /*子元素设置行高与父元素高度相同*/
        color:#DC143C;
        font-weight: bolder;
     }
     .b {
        width: 200px;
     	height: 200px;
     	background-color: #8470FF;
     	text-align: center; /*可以使内部多行行内元素水平居中*/
     	/*以下二个声明可以使多行文本垂直居中*/
     	display: table-cell;/*设置显示方式为表格单元格*/
     	vertical-align: middle; /*设置该单元格内的元素垂直居中*/
     }
     .c {
     	width: 200px;
     	height: 200px;
     	background-color: #ADFF2F;
	   /*以下二个声明可以使块级子元素垂直居中*/
     	display: table-cell;/*设置显示方式为表格单元格*/
     	vertical-align: middle;/*设置该单元格内的元素垂直居中*/	
     	
     }
     .c .c1 {
     	width: 100px;
     	height: 100px;
     	background-color: #008000;
     	margin: auto;   /*水平居中*/
     	text-align: center;
     	line-height: 100px;
     }
    .d {
    	width: 200px;
    	height: 200px;
    	background-color: #4169E1;
    	text-align: center; /*可以使行内元素水平居中*/
    	/*以下二个声明可以使块级子元素垂直居中*/
    	display: table-cell;/*设置显示方式为表格单元格*/
     	vertical-align: bottom;/*设置该单元格内的元素垂直居中*/	
    }
    .d ul {
    	margin: 0;
        padding: 0;
    }
    .d ul li {
    	list-style: none;
		display: inline;
    }
    }
     
</style>
</head>
<body>
	<h3>父元素一定是块元素,根据子元素不同分为以下几种:</h3>
	 1.子元素是行内元素:如:a,span <br>
		a.水平居中:在父元素上设置: text-align:center;<br>
		b.垂直居中:在行内子元素上设置行高与父元素相同: line-height
	<div class="a">
       <a href="">子元素是行内元素</a>
	</div>
	<hr>
	2. 子元素是多行内联文本
	a.水平居中:父元素设置text-align:center
	b.垂直居中:父元素设置:display:table-cell;vertical-align:middle
	<div class="b">
       <span>子元素多行元素1</span><br>
       <span>子元素多行元素2</span>
	</div>
    <hr>
    3. 子元素是块元素:<br>
	a.水平居中:子元素设置左右自动: margin: auto;<br>
	b.垂直居中:与多行内联文本处理方式一致:display:table-cell;vertical-align:middle
	<div class="c">
        <div class="c1"><a href="">块元素</a></div>
	</div>
	<hr>
	4. 子元素是不定宽的块元素:最常见的分页导航<br>
	a.水平居中:子元素转行内元素,父元素加:text-align:center <br>
	b.垂直居中:可给分页的ul加行高line-height=parent.height
	c.底边居中:更为常用,与多行内联文本垂直处理方式一致,vertical-align:bottom;
	<div class="d">
       <ul>
         <li><a href="">1</a></li>
         <li><a href="">2</a></li>
         <li><a href="">3</a></li>
         <li><a href="">4</a></li>
         <li><a href="">5</a></li>
       </ul>
	</div>
</body>
</html>

运行实例 »

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

手抄:

1.jpg

2.jpg

3.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