最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
CSS实现子元素div水平垂直居中代码示例
时间:2022-06-25 14:03:41 编辑:袖梨 来源:一聚教程网
本篇文章小编给大家分享一下CSS实现子元素div水平垂直居中代码示例,文章代码介绍的很详细,小编觉得挺不错的,现在分享给大家供大家参考,有需要的小伙伴们可以来看看。
div基本布局
css样式
1. 配合定位与margin:auto
父元素加相对定位,子元素加绝对定位
.main{ background-color: red; position: relative; } .center{ background-color: skyblue; position: absolute; left: 0; right: 0; top: 0; bottom: 0; margin: auto; }
2.利用flex布局,设置水平与竖直方向的内容居中。
.main{ background-color: red; display: flex; justify-content: center; align-items: center; } .center{ background-color: greenyellow; }
3.利用position:absolute与transform
:这里需要记住的是transform中translate使用百分比时相对的是自己的长宽,不是父盒子的。
.main{ background-color: red; position: relative; } .center{ background-color: pink; position: absolute; left: 50%; top: 50%; transform: translateX(-50%) translateY(-50%); }
4.定位 与负margin配合
只适合子盒子长宽固定的情况
.main{ background-color: red; position: relative; } .center{ background-color: pink; position: absolute; left: 50%; top: 50%; margin-left: -50px; margin-top: -50px; }
5.display:table-cell
display:table-cell;与vertical-align:middle 的作用是让子盒子在数值方向上居中
margin:auto;则让子盒子在水平方向居中,若只想让盒子在某个方向居中,去掉另一个就可以了。
.main{ background-color: red; display: table-cell; vertical-align: middle; } .center{ background-color: #000; margin: auto; }
相关文章
- 《崩坏:星穹铁道》缇宝最强光锥搭配推荐一览 02-20
- 《仙剑世界》潮起介绍 02-20
- 《崩坏:星穹铁道》如果时间是一朵花突破材料汇总 02-20
- 雨水节气的到来,标志着哪个季节的开始 02-20
- 《龙族:卡塞尔之门》活动日历查看位置 02-20
- 《仙剑世界》卡池抽取攻略 02-20