Why does the float start with the sibling element instead of the parent container?
.a,
.b {
padding: 100px;
background: -sharpccc;
margin-top: 30px;
}
.a {
float: left;
background: pink;
}
<body>
<div class="a"></div>
<div class="b"></div>
</body>