JSFiddle - React, Tailwind, and code Playground
by 규연 황
HTML
<div class="box">
ddd
</div>
CSS
.box {
overflow: hidden;
}
JavaScript
const box = document.querySelector('.box');
console.log(box.getBoundingClientRect().height)
by 규연 황
<div class="box">
ddd
</div>
.box {
overflow: hidden;
}
const box = document.querySelector('.box');
console.log(box.getBoundingClientRect().height)