Skip to content

Instantly share code, notes, and snippets.

@Legends
Created April 16, 2020 20:57
Show Gist options
  • Select an option

  • Save Legends/ac062856d6daa060203203c2b2d6bd42 to your computer and use it in GitHub Desktop.

Select an option

Save Legends/ac062856d6daa060203203c2b2d6bd42 to your computer and use it in GitHub Desktop.
const vw = Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
const vh = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
// Math.max: --> return the heighest of these two provided
// document.documentElement.clientHeight = Height without scrollbars
// window.innerHeight = Height including scrollbars
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment