Answers for "get viewport height"

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
4

window viewport size javascript

// viewport dimention 
const vw = Math.max(document.documentElement.clientWidth || 0, window.innerWidth || 0);
const vh = Math.max(document.documentElement.clientHeight || 0, window.innerHeight || 0);
Posted by: Guest on July-07-2020
0

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

<!--in html file-->
<section></section>
<section></section>
<section></section>
<section></section>
<section></section>
Posted by: Guest on March-17-2021

Code answers related to "get viewport height"

Code answers related to "Javascript"

Browse Popular Code Answers by Language