auto margin in not working in top and bottom..... my goal is to make body float in middle with equal margin in top and bottom side....... my expected result is to same height of top and bottom margin........ but the result is body shifted to top side
html {
width: 100vw;
height: 100vh;
background-color: red;
margin: 0px;
padding: 0px;
}
body {
background-color: chartreuse;
width: 90%;
height: 90%;
padding: 0px;
margin: auto;
border-color: black;
border-width: 10px;
border-style: solid;
}
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
</body>
</html>