CSS实现div不设高度完全居中的完整攻略主要包括以下几个步骤:
- 设置父元素为相对定位
.parent {
position: relative;
}
- 设置子元素为绝对定位
.child {
position: absolute;
}
- 设置子元素的top, left, right, bottom属性为0,并使用margin:auto属性来实现水平和垂直居中
.child {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
}
下面是两个示例说明:
示例1
HTML代码:
<div class="parent">
<div class="child">居中的内容</div>
</div>
CSS代码:
.parent {
position: relative;
width: 300px;
height: 200px;
border: 1px solid #ccc;
}
.child {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: 150px;
height: 50px;
background-color: #eee;
text-align: center;
line-height: 50px;
}
效果图:
示例2
HTML代码:
<div class="parent">
<div class="child">
<img src="https://i.imgur.com/6v1YoLo.jpg" alt="美食">
<span>美食图片</span>
</div>
</div>
CSS代码:
.parent {
position: relative;
width: 500px;
height: 300px;
border: 1px solid #ccc;
}
.child {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
text-align: center;
}
.child img {
width: 200px;
height: 200px;
border: 1px solid #ccc;
}
.child span {
margin-top: 10px;
display: inline-block;
font-size: 24px;
color: #333;
}
效果图:
本站文章如无特殊说明,均为本站原创,如若转载,请注明出处:CSS实现div不设高度完全居中 - Python技术站