CSS `height: calc(100vh);` Vs `height: 100vh;`

There’s no difference, since any time the expression calc(100vh) is calculated, it always ends up being 100vh.

Leave a Comment