I\'m using 100vh to center a div vertically with line-height. This site puts support for vh and vw at around 70%, is that a fair assessment? Would you recommend using viewpo
use both CSS vh and jQuery, it's safer. jQuery example:
var clientHeight = $( window ).height(); $('.element').css('height', clientHeight);
and CSS:
.element {height: 100vh;}