overflow 控制当内容超过其框的大小时会发生什么——无论是被剪切、滚动还是溢出。
css
.box { overflow: visible; } /* default — content spills OUT of the box */
.box { overflow: hidden; } /* clipped — overflowing content is cut off */
.box { overflow: scroll; } /* always shows scrollbars (even if not needed) */
{ : auto; }
