Answers for "how to make the body to take the full width"

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

Code answers related to "how to make the body to take the full width"

Browse Popular Code Answers by Language