目录
css–几种常用的水平垂直居中对齐方法text-align: center; line-height: 单前元素高度;
1 使用绝对定1到100的合数位
/* 需要固定宽高 */ position小学老师学历要求: absolute; top:0; left: 0; bottom: 0; right: 0; width: xxx; height: xxx 娇媚的妈妈 margin: auto;
2 使用绝对定位+ calc()
/* 需要知道具体的元素宽高值 */ position: absolute; width: xxx; height: xxx; top: calc(50% - xxx/2); left: calc(50% - xxx/2)
3. 使用绝对定位+transform
/* 不需要知道元素的宽高 */ position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
4. 使用display:flex;
display: flex; justify-content: center; align-items: center;
本文发布于:2023-04-07 09:09:18,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/4f31c10c4e20f9842f63af6c313471bf.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:CSS–几种常用的水平垂直居中对齐方法.doc
本文 PDF 下载地址:CSS–几种常用的水平垂直居中对齐方法.pdf
留言与评论(共有 0 条评论) |