jargon

Frontend & browser·Layout, CSS and the cascade

you added `overflow: hidden` to the parent and the floats inside it stopped escaping the bottom.

Block formatting context

Also calledBFC

An independent layout region whose contents cannot interact with the layout outside it: floats are contained, margins do not collapse through it, and it does not overlap adjacent floats. It is created by side effects of other properties — `overflow` other than visible, `display: flow-root`, flex and grid containers, absolute positioning — which is why the fixes for float and margin bugs have always looked like unrelated magic. `display: flow-root` exists to create one on purpose, with no side effects.

Commonly confused with