What is the best way to solve this issue. Obviously all browsers on mobile have got a UI (address bar etc) at the top. This adds additional height to the viewport, so my website
The accepted answer didn't work for me. I had to make two adjustments:
add 'px' to the end of window.innerHeight
document.body.style.height = ${window.innerHeight}px;
${window.innerHeight}px