comment faire du corps pleine grandeur
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;
}
Cant Code