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
The page you have linked to answers your question really.
It depends what browsers you need to support.
Partial support in IE9 refers to supporting "vm" instead of "vmin". Partial support in iOS7 is due to buggy behavior of the vh unit. All other partial support refers to not supporting the "vmax" unit.
This states that using viewport units could be 'buggy' in iOS7. I wouldn't recommend using viewport units, but instead use:
height: 500px;
height: 50%;
These values are widely supported and will produce the best results.