1
HTML/CSSIntermediate#css#units
visible (default) lets content spill outside the box. hidden clips overflowing content with no scrollbar. scroll always shows scrollbars even if content fits. auto shows scrollbars only when content actually overflows.
.panel { max-height: 300px; overflow-y: auto; }
.clip { overflow: hidden; }