Answers for "how full body size in html"

1

html body full height

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

body width full

body {
    min-width: fit-content;
}
Posted by: Guest on August-14-2020
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