Get an element's width or height in percentage
<style>
.my-element {
width: 85%
}
</style>
<body>
<div class="my-element"></div>
</body>
const width = getSizePercent({ selector: '.my-element', property: 'width' });
// width === '85%'
Borrowed a nice trick from this answer, implementation is more stable (on some widths the calculations weren't completely accurate).
So big thanks to timofey