.wrap {
height: calc(100vh - 50px);
}
this won't work. I got output of 50vh. Is there any where I can minus pixel with vh?
Less:
.wrap {
height: calc(~"100vh - 50px");
}
Sass or pure css:
.wrap {
height: calc(100vh - 50px);
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With