理解水平居中的几种表现
1.水平居中
text-align
【场景一】:在父元素中设置text-align:center实现行内元素水平居中
将子元素的display设置为,使子元素变成行内元素
[注意]若要兼容ie7-浏览器,可使用display:inline;zoom:1;来达到inline-block的效果
html代码:
1 <div class="parent" style="background-color: gray;"> 2 <div class="child" style="background-color: lightblue;">demo</div>
css代码:
1 .parent{text-align: center;} 2 .child{display: inline-block;}
这种方法的不足之处在于,子元素的text-align继承了父元素的center,文字也居中显示,所以需要在子元素中设置text-align:left
margin
【场景二】:在本身元素设置margin: 0 auto实现块级元素水平居中
将子元素的display为,使子元素成为块级元素,同时table还具有包裹性,宽度由内容撑开
[注意]若要兼容ie7-浏览器,可把child的结构换成<table class="child">demo</table>
html代码:
1 <div class="parent" style="background-color: gray;"> 2 <div class="child" style="background-color: lightblue;">demo</div> 3 </div>
css代码:
1 .child{ 2 display: table; 3 margin: 0 auto; 4 }
该方案的优点在于,只设置父级元素即可实现居中效果
【场景三】:若子元素定宽,则可以使用,实现居中效果;若不设置宽度时,子元素被拉伸
html代码:
1 <div class="parent" style="background-color: gray;height: 20px;"> 2 <div class="child" style="background-color: lightblue;">demo</div> 3 </div>
css代码:
1 .parent{ 2 position: relative; 3 } 4 .child{ 5 position: absolute; 6 left: 0; 7 right: 0; 8 margin: 0 auto; 9 width: 50px; 10 }
absolute
【思路四】: 通过绝对定位的偏移属性实现水平居中
配合translate()位移函数
的百分比是相对于自身宽度的,所以left:50%配合translatex(-50%)可实现居中效果
[注意]ie9-浏览器不支持
html代码:
1 <div class="parent" style="background-color: gray;height: 20px;"> 2 <div class="child" style="background-color: lightblue;">demo</div> 3 </div>
css代码:
1 .parent{ 2 position: relative; 3 } 4 .child{ 5 position: absolute; 6 left: 50%; 7 transform:translatex(-50%); 8 }
【思路五】数值型的偏移属性是相对于自身的,但百分比却是相对于包含块的。因为子元素已经被设置为absolute,所以若使用relative,则需要增加一层<div>结构,使其宽度与子元素宽度相同
[注意]该方法全兼容,但是增加了html结构
html代码:
1 <div class="parent" style="background-color: gray;height: 20px;"> 2 <div class="childwrap"> 3 <div class="child" style="background-color: lightblue;">demo</div> 4 </div> 5 </div>
css代码:
1 .parent{ 2 position: relative; 3 } 4 .childwrap{ 5 position: absolute; 6 left: 50%; 7 } 8 .child{ 9 position: relative; 10 left: -50%; 11 }
【思路六】配合负margin
margin的百分比是相对于包含块的,所以需要增加一层<div>结构。由于宽度width的默认值是auto,当设置时,width也会随着变大。所以此时需要定宽处理
[注意]虽然全兼容,但需要增加页面结构及定宽处理,所以限制了应用场景
html代码:
1 <div class="parent" style="background-color: gray;height: 20px;"> 2 <div class="childwrap"> 3 <div class="child" style="background-color: lightblue;">demo</div> 4 </div> 5 </div>
css代码:
1 .parent{ 2 position: relative; 3 } 4 .childwrap{ 5 position: absolute; 6 left: 50%; 7 } 8 .child{ 9 width:50px; 10 margin-left:-50%; 11 }
flex
【思路七】: 使用弹性盒模型flex实现水平居中
[注意]ie9-浏览器不支持
在上设置主轴对齐方式justify-content:center
html代码:
1 <div class="parent" style="background-color: gray;"> 2 <div class="child" style="background-color: lightblue;">demo</div> 3 </div>
css代码:
1 .parent{ 2 display: flex; 3 justify-content: center; 4 }
【思路八】在上设置margin: 0 auto
html代码:
1 <div class="parent" style="background-color: gray;"> 2 <div class="child" style="background-color: lightblue;">demo</div> 3 </div>
css代码:
1 .parent{display: flex;} 2 .child{margin: 0 auto;}
grid
【思路九】: 使用栅格布局grid实现水平居中
[注意]ie10-浏览器不支持
在网格容器上设置justify-items或justify-content
html代码:
1 <div class="parent" style="background-color: gray;"> 2 <div class="child" style="background-color: lightblue;">demo</div> 3 </div>
css代码:
1 .parent{ 2 display:grid; 3 justify-items:center; 4 /*justify-content:center;*/ 5 }
【思路十】在网格项目中设置justify-self或者margin: 0 auto
html代码:
1 <div class="parent" style="background-color: gray;"> 2 <div class="child" style="background-color: lightblue;">demo</div> 3 </div>
css代码:
1 .parent{ 2 display:grid; 3 } 4 .child{ 5 justify-self:center; 6 /*margin: 0 auto;*/ 7 }