Answers for "make the body cover the whole width and height of page"

1

html body full height

html {
  height: 100%;
}
body {
  min-height: 100%;
}
Posted by: Guest on May-08-2021
0

how to make body full size

IN HTML:

<head>
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>

IN CSS:

html {
    height: 100vh;
}

body {
    height: 100%;
    background: gray;
}
Posted by: Guest on April-01-2022

Code answers related to "make the body cover the whole width and height of page"

Browse Popular Code Answers by Language