Answers for "how to get the height of a div in css"

-1

how to get the height of a div in css

var clientHeight = document.getElementById('exampleElement').clientHeight;
alert(clientHeight);

var offsetHeight = document.getElementById('exampleElement').offsetHeight;
alert(offsetHeight)
Posted by: Guest on June-01-2021

Code answers related to "how to get the height of a div in css"

Code answers related to "Javascript"

Browse Popular Code Answers by Language