赞
踩
.box {
width: 800px;
height: 400px;
border: 1px solid black;
}
.son {
width: 400px;
height: 200px;
margin-top: 100px; /* 上外边距为自身高度一半 */
margin-left: 200px; /* 左外边距为自身宽度一半 */
border: 1px solid red;
}
.box {
width: 800px;
height: 400px;
border: 1px solid black;
}
.son {
width: 400px;
height: 200px;
/* 让子盒子距离顶部外边距为自己高度的一半,左右auto */
margin: 100px auto;
border: 1px solid red;
}
.box { position: relative; width: 800px; height: 400px; border: 1px solid black; } .son { position: absolute; width: 400px; height: 200px; top: 50%; left: 50%; margin-top: -100px; margin-left: -200px; border: 1px solid red; }
.box { position: relative; width: 800px; height: 400px; border: 1px solid black; } .son { position: absolute; width: 400px; height: 200px; top: 0; left: 0; right: 0; bottom: 0; margin: auto; border: 1px solid red; }
.box { position: relative; width: 800px; height: 400px; border: 1px solid black; } .son { position: absolute; width: 400px; height: 200px; top: 50%; left: 50%; transform: translate(-50%, -50%); border: 1px solid red; }
.box {
display: flex;
justify-content: center; /* 设置flex盒子中的项目在主轴上居中对齐 */
align-items: center; /* 设置flex盒子中的项目在侧轴和主轴上居中对齐 */
width: 800px;
height: 400px;
border: 1px solid black;
}
.son {
width: 400px;
height: 200px;
border: 1px solid red;
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。