Answers for "html set body size to 100%"

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

Browse Popular Code Answers by Language