讨论CSS中的各类居中方式
今天主要谈一谈CSS中的各种居中的办法。
是水平居中,最简单的办法就是
也就是将margin-left和margin-right属性设置为auto,从而达到水平居中的效果。
那么其他的办法呢?容我一一道来
line-height
介绍文字的水平居中方法
利用line-height设为height的一样即可
line-height: 200px;/垂直居中关键/
text-align:center;
height: 200px;
font-size: 36px;
background-color: #c;
}
效果如下
padding填充
利用padding和background-clip配合实现div的水平垂直居中
<div class="children"></div>
</div>
通过backgroun-clip设置为content-box,将背景裁剪到内容区外沿,再利用padding设为外div减去内div的差的一半,来实现
.parent{ margin:0 auto; width:200px; height:200px; background-color:red; } .children { width: 100px; height: 100px; padding: 50px; background-color: black; background-clip:content-box;/居中的关键/
效果如下
margin填充
接下来介绍margin填充的方式来实现水平垂直居中。
我们还是定义父子div
<div class="parent">
<div class="children"></div>
</div>
这里我们利用将子div的margin-设置为父div高度减去子div高度的一半,然后再通过overflow设置为hidden来触发父div的BFC,LESS代码如下
@parentWidth:200px; @childrenWidth:50px; .parent { margin:0 auto; height:@parentWidth; width:@parentWidth; background: red; overflow:hidden;/触发BFC/ } .children { height:@childrenWidth; width:@childrenWidth; margin-left:auto; margin-right:auto; margin-: (@parentWidth - @childrenWidth) / 2; background:black; }
得到居中效果如下
absolute定位
利用position:absolute搭配,left 50%,再将margin设为负值也可以对div进行水平垂直居中,还是需要定义父子div
<div class="children"></div>
</div>
然后设置相应的css
.parent { position:relative; margin:0 auto; width:200px; height:200px; background-color:red; } .children { position:absolute; left:50%; :50%; margin:-25px 0 0 -25px ; height:50px; width:50px; background-color: black; }
其中的margin中的值为该div宽度的一半,效果图
text-align居中
众所周知,text-align可以使得一个div中的内容水平居中。如果是要将该div中的子div居中呢?可以将子div的display设为inline-block。
.parent { text-align:center; margin:0 auto; width:200px; height:200px; background:red; } .children { positiona;absolute; margin-:75px; width:50px; height:50px; background: black; display:inline-block;/使其父元素text-align生效/ }
图片居中
一般的图片居中都是和text-align一样,将图片包装在一个div中,将该div的text-align设为center即可。
可以参考狼蚁网站SEO优化的链接
个人站点
有一种特殊的方式,利用了一个图片进行占位,以让父容器获得高宽,从而让进行-50%偏移的图片能有一个参照容器作百分比计算。优点是可以不知道图片的大小,随便放张尺寸不超过父容器的图片上去都能做到居中。,兼容性好,IE6都是能顺利兼容的。代码如下
<p>
<img class="hidden-img" src="" alt="" />
<img class="show-img" src="" alt="" /></p>
</div>
.parent { position:relative; width:100%; height:200px; background:red; } p { position:absolute; :50%; left:50%; } .hidden-img { visibility:hidden; } .show-img { position:absolute; right:50%; bottom:50%; }
效果如下
transform居中
上面讲到的div居中的例子中,div的宽度都是固定的,实际项目中,有可能遇到不定宽的div,特别是响应式或者移动端的设计中,更加常见。所以狼蚁网站SEO优化介绍一种不需要定宽的div水平垂直居中方法。
先上代码
<div class="children">
<div class="children-inline">我是水平垂直居中噢!</div>
</div>
</div>
.parent { float: left; width: 100%; height: 200px; background-color: red; } .children { float:left; position:relative; :50%; left:50%; } .children-inline { position: relative; left: -50%; -webkit-transform : translate3d(0, -50%, 0); transform : translate3d(0, -50%, 0); background-color: black; color:white; }
效果如下
我们利用float,将需要居中的div的父div也就是children的宽度收缩,然后left:50%,将children的左边与水平中线对齐。这个时候,还没有真正居中,我们需要将children-inner左移动-50%,这样就水平居中了。
再来说说垂直方向,先将children的设为50%,然后其上边和垂直中线对齐了,同样,我们需要将children-inner上移动-50%。这个50%是计算不出来的,所以我们用到了transform : translate3d(0, -50%, 0);
这个方法非常好用噢。
flex居中
来介绍一下CSS3中的display:flex来实现的水平垂直居中的方法。
<div class="children">我是通过flex的水平垂直居中噢!</div>
</div>
html,body{ width: 100%; height: 200px; } .parent { display:flex; align-items: center;/垂直居中/ justify-content: center;/水平居中/ width:100%; height:100%; background-color:red; } .children { background-color:blue; }
效果如下
这种方式最为简便,就是兼容性不好,不过随着时间的前进,各大浏览器一定会都兼容的。
以上就是本文的全部内容,希望大家可以喜欢。
编程语言
- 如何快速学会编程 如何快速学会ug编程
- 免费学编程的app 推荐12个免费学编程的好网站
- 电脑怎么编程:电脑怎么编程网咯游戏菜单图标
- 如何写代码新手教学 如何写代码新手教学手机
- 基础编程入门教程视频 基础编程入门教程视频华
- 编程演示:编程演示浦丰投针过程
- 乐高编程加盟 乐高积木编程加盟
- 跟我学plc编程 plc编程自学入门视频教程
- ug编程成航林总 ug编程实战视频
- 孩子学编程的好处和坏处
- 初学者学编程该从哪里开始 新手学编程从哪里入
- 慢走丝编程 慢走丝编程难学吗
- 国内十强少儿编程机构 中国少儿编程机构十强有
- 成人计算机速成培训班 成人计算机速成培训班办
- 孩子学编程网上课程哪家好 儿童学编程比较好的
- 代码编程教学入门软件 代码编程教程