1
HTML/CSSAdvanced#css#float
float was originally designed to wrap text around images, and later hijacked for layout before flexbox/grid existed. Floated elements are removed from normal flow, causing parent containers to collapse (zero height) unless cleared, requiring hacks like clearfix.
.clearfix::after {
content: "";
display: table;
clear: both;
}
img { float: left; margin-right: 10px; }