how to get div height in css and use code example
Example 1: find div height in javascript
//includes margin and padding
document.getElementById('myDiv').offsetHeight;
//without margin and padding
document.getElementById('myDiv').clientHeight;
Example 2: height current -3px css
height: calc(100% - 3px)