Answers for "get HTML width and height"

23

Javascript get element height and width

var width = document.getElementById('myID').offsetWidth;//includes margin,border,padding
var height = document.getElementById('myID'). offsetHeight;//includes margin,border,padding
Posted by: Guest on July-26-2019
1

how change height and width in html

<img src="example.jpg" style="height: 100px; width: 100px;"/>
Posted by: Guest on August-08-2021

Browse Popular Code Answers by Language