【发布时间】:2021-02-04 09:00:17
【问题描述】:
我在引导轮播中的 div 中有不同的图像大小。它是横向或纵向图像,如果我将宽度设置为 100%,横向图像会变得完美,但肖像会变高。
如果我将 max-hight 设置为它,横向图像不会变成全宽。
CSS:
.case-box {
margin-bottom: 1.5em;
display: flex;
width: 100%;
height: 420px;
align-items: center;
justify-content: start;
}
@media (min-width: 768px)
.case-box {
height: 428px;
}
@media (min-width: 1280px)
.case-box {
height: 540px;
}
.case-img {
width: auto;
max-height: 100%;
}
【问题讨论】:
标签: html css wordpress bootstrap-4 carousel