Fit Your UI to the Screen on Mobile Browsers - DEV Community

PHOTO EMBED

Thu Mar 16 2023 06:46:15 GMT+0000 (Coordinated Universal Time)

Saved by @norbertcki

  const resizeOps = () => {
    document.documentElement.style.setProperty("--vh", window.innerHeight * 0.01 + "px");
  };

  resizeOps();
  window.addEventListener("resize", resizeOps);
content_copyCOPY

content='height=device-height, ..., ....'

https://dev.to/ozanbolel/fit-your-website-to-the-viewport-on-mobile-38hl