我的SCSS遇到了一些问题,它无法编译。
代码:
.section__image-wrapper {
grid-row: 1;
border: 1px solid #000;
grid-column: 1 / last-line;
min-height: 500px;
& > img{
object-fit: cover;
height: inherit;
height: max(50%, 250px);
opacity: 0.75;
}
}
错误:
Compilation Error
Internal Error: Incompatible units: '%' and 'px'.
有没有办法使这项工作有效?