Answers for "div height and width"

CSS
4

css image size adjust

squareImage {
  border: 1px solid #ddd;	/* thickness and color of border */
  border-radius: 4px;		/* edge rounding of border */
  width: 150px;				/* width of image (px or % or auto) */
  height: auto;				/* height of image (px or % or auto) */
}
Posted by: Guest on August-15-2020
-1

how to get the height of a div in css

var clientHeight = document.getElementById('exampleElement').clientHeight;
alert(clientHeight);

var offsetHeight = document.getElementById('exampleElement').offsetHeight;
alert(offsetHeight)
Posted by: Guest on June-01-2021

Code answers related to "div height and width"

Browse Popular Code Answers by Language