Answers for "set height and width of body html"

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
0

setting height and width on body

body {
	min-height: 100vh;
	width: 100%;
}
Posted by: Guest on June-02-2021
-1

how to make html body alway 100% height and width

html, 
body {
    height: 100%;
}
Posted by: Guest on April-22-2021

Code answers related to "set height and width of body html"

Browse Popular Code Answers by Language