博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
css 块状元素垂直水平居中的方法
阅读量:5734 次
发布时间:2019-06-18

本文共 1537 字,大约阅读时间需要 5 分钟。

1.使用定位 .box { position: absolute; top: 50%; left: 50%; margin: -100px -100px; width: 200px; height: 200px; background: #5B83AD; } 这里需要注意的是这种方法适用于已知块状元素的具体大小, margin 的百分比值参照其包含块的宽度进行计算,所以不能使用-50%。

2.css3样式属性display:flex设定水平垂直居中 .box{ width: 100%; height: 450px; display: flex; } .childBox{ margin: auto; width: 50%; height: 50%; } 这里的块状元素高度未知或者高度自适应的时候依然可以使用。对于PC端,一般chrome(测试版本:49.0.2623.110 m)和火狐(测试版本:49.0.2)都能很好地支持。ie不支持,显示的是顺序排列下来的宽度100%的模块。

对于移动端:

(1)上述代码iOS的原生safari浏览器是支持的;UC浏览器支持的很好;微信浏览器不支持(测试机型:苹果4s)

(2)安卓的原生浏览器不支持,能够正常显示模块,文档流依次排列;UC浏览器不支持,显示为空白;微信浏览器不支持(测试机型:华为荣耀6 Plus,Android4.4.2)

3.使用绝对定位+css3样式属性transform .box { background: #6c94be; width: 100%; height: 450px; position: relative;

} .childBox { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: #5B83AD; width: 200px; } 这里需要注意transform中translate偏移的百分比值是相对于自身大小的,无论绝对定位元素的尺寸是多少,其都是水平垂直居中显示的,但问题是兼容性不好。IE9+以及其他现代浏览器才支持。IE9之前版本不支持,在IE8模式下,不居中。并且偏移在某种情况下也会导致像素模糊。

4.绝对定位更好一点的写法 .box { background: #6c94be; width: 100%; height: 450px; position: relative; } .childBox { position: absolute; left: 0; bottom: 0; width: 200px; height: 200px; background: #5B83AD; margin: auto; }

5.设置为行内元素 .box{ width: 500px; height: 500px; line-height: 500px; text-align: center; background: red; } .childBox{ height: 200px; width: 200px; display: inline-block; vertical-align: middle; background: yellow; }

6.grid布局 .box { display: grid; } .childBox { align-self: center; justify-self: center; } 缺点是兼容问题。

转载于:https://juejin.im/post/5ce5067ef265da1b8a4ef3c1

你可能感兴趣的文章
鼠标停留在GridView某一行时行的颜色改变
查看>>
系列3:WAS Liberty Profile hello mysql jdbc
查看>>
基础知识:python模块的导入
查看>>
Android MVC之我的实现
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
关于批处理-1
查看>>
Tomcat部署Web应用方法总结
查看>>
Python3 django2.0 字段加密 解密 AES
查看>>
CCNA实验之:网络地址转换(NAT)实验
查看>>
计算机网络原理笔记-停止等待协议
查看>>
确定当前记录和下一条记录之间相差的天数
查看>>
NYOJ32:组合数(DFS入门)
查看>>
使用Callable和Future接口创建线程
查看>>
sql语句返回主键SCOPE_IDENTITY()
查看>>
MongoDB培训
查看>>
机器学习开源项目精选TOP30
查看>>
代码分析系列 内存执行过程
查看>>
iOS开发-邮件发送
查看>>
/etc/resolv.conf文件详解
查看>>