大家好,又见面了,我是你们的朋友全栈君。
1 绝对定位 + 转换
<div class="parent">
<div class="child">绝对定位 + 转换</div>
</div>
.parent {
position: relative;
width: 400px;
height: 400px;
background: skyblue;
}
.child {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 200px;
height: 200px;
background: pink;
}
2 弹性模型
<div class="parent">
<div class="child">弹性模型</div>
</div>
.parent {
display: flex;
justify-content: center;
align-items: center;
width: 400px;
height: 400px;
background: skyblue;
}
.child {
width: 200px;
height: 200px;
background: pink;
}
3 单元格方式
<div class="parent">
<div class="child">单元格方式</div>
</div>
.parent {
display: table-cell;
text-align: center;
vertical-align: middle;
width: 400px;
height: 400px;
background: skyblue;
}
.child {
display: inline-block;
width: 200px;
height: 200px;
background: pink;
}
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/155648.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...