SCSS编译错误“不兼容的单位”

时间:2019-12-18 15:50:35

标签: css sass

我的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'.

有没有办法使这项工作有效?

0 个答案:

没有答案