Answers for "get the viewport width and 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
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 the viewport width and height"

Code answers related to "Javascript"

Browse Popular Code Answers by Language