Question
CSS `height: calc(100vh);` Vs `height: 100vh;`
I'm working on a project where the former developer used:
.main-sidebar {
height: calc(100vh);
}
I have no way to contact him/her anymore, and I would like to understand what is the difference (if any) between the two methods.
(Is this the right place to ask this question?)