Post

min/max() + calc() = Incompatible units: 'px' and 'vw'

css min() / max() 안에서 vw / vh 단위 혹은 산술연산자를 사용한 경우 Incompatible units: 'px' and 'vw' 에러 발생

min() / max()calc()로 감싸주면 해결된다.

1
padding-top: calc(max(20vh, 100px));


SASS: Incompatible units: ‘vw’ and ‘px’

This post is licensed under CC BY 4.0 by the author.