const elmnt = document.getElementById("myDIV");
console.log("height: ", elmnt.offsetHeight);
console.log("width: ", elmnt.offsetWidth);
const elmnt = document.getElementById("myDIV");
console.log("scrolled from top: ", elmnt.scrollTop);
console.log("scrolled from left: ", elmnt.scrolLeft);