在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
【一】知道居中元素的宽高 absolute + 负margin 代码实现 .wrapBox5{ width: 300px; height: 300px; border:1px solid red; position: relative; } .wrapItem5{ width: 100px; height: 50px; position: absolute; background:yellow; top: 50%; left:50%; margin-top: -25px; margin-left: -50px; } 运行结果 absolute + margin auto 代码实现 .wrapBox{ width: 300px; height: 300px; background: yellow; position: relative; } .wrapItem{ width: 100px; height: 50px; background:green; display: inline-block; position: absolute; top: 0px; bottom:0px; left: 0px; right: 0px; margin:auto; } absolute + calc 代码实现 .wrapBox6{ width: 300px; height: 300px; border:1px solid green; position: relative; } .wrapItem6{ width: 100px; height: 50px; position: absolute; background:yellow; top: calc(50% - 25px); left:calc(50% - 50px); } 运行结果 三种对比总结 当居中元素知道宽高的时候,设置居中的方式比较简单单一。三种方法的本质是一样的,都是对居中元素进行绝对定位,在定位到上50%,左50%后再拉回居中元素的一半宽高实现真正的居中。三种方式的区别就在于拉回元素本身宽高的方式不同。 【二】居中元素的宽高未知 absolute + transform 代码实现 .wrapBox{ width: 300px; height: 300px; background:#ddd; position: relative; } .wrapItem{ width: 100px; height: 50px; background:green; position: absolute; top: 50%; left:50%; transform: translate(-50% , -50%); } 运行结果 原理 优缺点 flex布局 .wrapBox2{ width: 300px; height: 300px; background: blue; display: flex; justify-content: center; align-items: center; } /*注意:即使不设置子元素为行块元素也不会独占一层*/ .wrapItem2{ width: 100px; height: 50px; background:green; } 运行结果 原理 优缺点 table-cell布局 代码实现 .wrapBox3{ width: 300px; height: 300px; background: yellow; display: table-cell; vertical-align: middle; text-align: center; } .wrapItem3{ width: 100px; height: 50px; background:green; display: inline-block; } 运行结果 原理 table元素 代码实现 .tableBox{ border:2px solid yellow; width: 300px; height: 300px; } .tableBox table{ width:100%; height:100%; } .centerWrap{ text-align: center; vertical-align: middle; } .centerItem{ display: inline-block; background:pink; } 运行结果 总结 到此这篇关于css实现元素垂直居中显示的7种方式的文章就介绍到这了,更多相关css 元素垂直居中内容请搜索极客世界以前的文章或继续浏览下面的相关文章,希望大家以后多多支持极客世界! |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论