When using getComputedStyle to fetch the height of an element which has been skewed (transform: skewY(-10deg)) then the value is the height of the element before the transform. e.g. a div in my case which is 600px high but which covers around 700px in vertical space. Is there a way to get the actual rendered height?
I've since found the solution: element.getBoundingClientRect().height.