Skip to content

Instantly share code, notes, and snippets.

@smitroshin
Created April 26, 2020 22:07
Show Gist options
  • Save smitroshin/d149ade7ffde3395fe720e07127b9abf to your computer and use it in GitHub Desktop.
Save smitroshin/d149ade7ffde3395fe720e07127b9abf to your computer and use it in GitHub Desktop.
Size of browser viewport
const vw = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
const vh = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment