首页 > 代码库 > 垂直水平居中的几种方法
垂直水平居中的几种方法
1,(元素在容器中垂直水平居中)
css: .box{width:800px;height:800px;background:#ccc;display:flex;justify-content:center;align-items:center;}
.box div{width:300px;height:300px;background:red;}
html: <div class="box">
<div></div>
</div>
2,(元素在容器中垂直水平居中)
css: .box{width:800px;height:800px;background:#ccc;display:flex;justify-content:center;}
.box div{width:300px;height:300px;background:red;align-self:center;}
html: <div class="box">
<div></div>
</div>
3,(元素在页面垂直水平居中)
css: .box{width:800px;height:800px;background:red;position:fixed;left:0;right:0;top:0;bottom:0;margin:auto;}
html: <div class="box"></div>
4,(元素在容器中垂直水平居中)
css: .box{width:800px;height:800px;text-align:center;}
.box .box2{display:inline-block;vertical-align:middle;}
.box span{display:inline-block;width:0px;height:100%;vertical-align:middle;}
html: <div class="box">
<a class="box2">垂直水平居中</a><span></span>
</div>
<!--要在元素后面不换行加空的span-->
垂直水平居中的几种方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。