当前位置:网站首页>水平垂直居中 方法 和兼容
水平垂直居中 方法 和兼容
2022-07-07 14:19:00 【星空小梦】
方法
第一种通过绝对定位的方式 absolute + 负margin
首先知道子元素的宽高,给子元素设置top:50%;left:50%,
但绝对定位是基于子元素的左上角,我们所希望的效果是子元素的中心居中显示。。。。借助外边距的负值,负的外边距可以让元素向相反方向定位,
通过指定子元素的外边距为子元素宽度一半的负值,就可以让子元素居中了
**优点:**比较好理解,兼容性好
**缺点:**需要知道子元素的宽高
第二种:也是通过绝对定位的方式 absolute + margin auto
这个是需要将各个方向的距离都设0,再讲margin设为auto;就行
**优点:**兼容性也很好
**缺点:**需要知道子元素的宽高
第三种:absolute + calc(计算)
这种方法top的百分比是基于元素的左上角,那么在减去宽度与高度的一半就好了
calc:任何长度值都可以使用calc()函数进行计算;
calc()函数使用标准的数学运算优先级规则;
它支持 “+”, “-”, “*”, “/” 运算
也可以查看calc教程:https://www.runoob.com/cssref/func-calc.html
**优点:**他的兼容性依赖的是calc的兼容性
**缺点:**同样是需要知道子元素的宽高
第四种:absolute + transform (过渡)
这个方法不需要子元素固定宽高
修复绝对定位的问题,还可以使用css3新增的transform,transform的translate
属性也可以设置百分比,其是相对于自身的宽和高,所以可以将translate设置为-50%,就可以做到居中了
**优点:**代码量少
**缺点:**IE8不支持, 属性需要追加浏览器厂商前缀, 可能干扰其他 transform 效果, 某些情形下会出现文本或元素边界渲染模糊的现象.
第五种:line-height
优点:代码简洁
缺点:只对文本有效,只对单行文本有效,多行文本不可以
第九种:弹性盒子的方式
通过给父元素设置justify-content: center;
align-items: center;就可以了
**优点:**移动端使用灵活自如
**缺点:**pc端需要根据兼容情况来判定
第十种:grid(网格布局)
给父级设display:grid;
给子元素设align-self: center;justify-self: center;
**优点:**代码量少
**缺点:**兼容不如flex,建议用flex
不要知道元素宽高:
缺点: 要知道元素宽高:
边栏推荐
- PHP realizes wechat applet face recognition and face brushing login function
- PyTorch 中的乘法:mul()、multiply()、matmul()、mm()、mv()、dot()
- Set the route and optimize the URL in thinkphp3.2.3
- Three. JS series (1): API structure diagram-1
- Step by step monitoring platform ZABBIX
- thinkphp3.2.3中设置路由,优化url
- Multiplication in pytorch: mul (), multiply (), matmul (), mm (), MV (), dot ()
- Prometheus API deletes all data of a specified job
- Xcode Revoke certificate
- Personal notes of graphics (3)
猜你喜欢
[Android -- data storage] use SQLite to store data
What about the pointer in neural network C language
Three. JS series (2): API structure diagram-2
Eye of depth (VI) -- inverse of matrix (attachment: some ideas of logistic model)
Enterprise log analysis system elk
The difference and working principle between compiler and interpreter
统计学习方法——感知机
1亿单身男女“在线相亲”,撑起130亿IPO
企业级日志分析系统ELK
Xingruige database was shortlisted as the "typical solution for information technology application and innovation in Fujian Province in 2021"
随机推荐
MySQL中, 如何查询某一天, 某一月, 某一年的数据
laravel构造函数和中间件执行顺序问题
Laravel service provider instance tutorial - create a service provider test instance
pycharm 终端部启用虚拟环境
华东师大团队提出,具有DNA调控电路的卷积神经网络的系统分子实现
Find tags in prefab in unity editing mode
logback.xml配置不同级别日志,设置彩色输出
Markdown formula editing tutorial
The inevitable trend of the intelligent development of ankerui power grid is that microcomputer protection devices are used in power systems
MySQL数据库基本操作-DQL-基本查询
Power of leetcode-231-2
Prometheus API deletes all data of a specified job
分步式監控平臺zabbix
Performance measure of classification model
js中复选框checkbox如何判定为被选中
Rongyun won the 2022 China Xinchuang digital office portal excellence product award!
Talk about the cloud deployment of local projects created by SAP IRPA studio
95. (cesium chapter) cesium dynamic monomer-3d building (building)
Laravel constructor and middleware execution order
PHP has its own filtering and escape functions