失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > css水平垂直居中(绝对定位居中)

css水平垂直居中(绝对定位居中)

时间:2019-02-01 00:34:06

相关推荐

css水平垂直居中(绝对定位居中)

使用绝对定位有个限制就是父集必须设置一个固定的高度。

首先HTML

1 <div id="box">2<div class="child"></div>3 </div>

CSS

1 #box { 2position: relative; 3height: 500px; 4background: red; 5 } 6 .child { 7width: 100px; 8height: 100px; 9background: blue;10margin: auto;11position: absolute;12top: 0;13right: 0;14bottom: 0;15left: 0;16 }

示例图:

如果觉得《css水平垂直居中(绝对定位居中)》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。