I saw this problem accidently. But it looks so weird I try to understand what is going on here but I can't find any answer. Can anyone explain me this issue?
Look at this css. Header have margin-top but margin not applied to heder elemnt. My expactation was I saw little red space top of header. But this is not work.
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
background-color: white;
}
body {
background-color: red;
margin: 20px;
}
header {
height: 100vh;
margin-top: 20px;
background-color: blue;
}