要使一组CSS定位的图像居中且两边都有页边距,可以使用以下方法:
.container {
display: flex;
justify-content: center;
margin: 0 20px; /* 设置页边距 */
}
.container img {
/* 设置图像样式 */
}
.container {
position: relative;
margin: 0 20px; /* 设置页边距 */
}
.container img {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%); /* 将图像居中 */
/* 设置图像样式 */
}
.container {
display: grid;
justify-items: center;
margin: 0 20px; /* 设置页边距 */
}
.container img {
/* 设置图像样式 */
}
这些方法可以使一组CSS定位的图像居中且两边都有页边距。根据具体情况选择适合的方法。
领取专属 10元无门槛券
手把手带您无忧上云