Answers for "how to get height of viewport js"

4

JS get viewport width

//getting the viewport dimensions
var width= Math.max(document.documentElement.clientWidth, window.innerWidth || 0);
var height = Math.max(document.documentElement.clientHeight, window.innerHeight || 0);
Posted by: Guest on July-31-2019
0

what if i want a section to take the height of a viewport html

/* in css file */

html,
body {
  height: 100%;
  margin: 0;
}
section {
  height: 100vh;
}
section:nth-child(1) {
  background: lightblue;
}
section:nth-child(2) {
  background: lightgreen;
}
section:nth-child(3) {
  background: purple;
}
section:nth-child(4) {
  background: red;
}
section:nth-child(5) {
  background: yellow;
}
Posted by: Guest on March-17-2021

Code answers related to "how to get height of viewport js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language