Overflow
- often used to clear a float
- configures how content should display if it is too large for area
Properties
overflow: visible auto hidden scroll;
visible= shows content beyond container boundaries (default)auto= adds scrollbar when content overflowshidden= hides overflowing contentscroll= adds scrollbaroverflow-xoverflow-y
Clear float
= similar ass the line break
div {
background-color: #F3F1BF;
overflow: auto;
width: 100%;
}