# Overflow

Overflow (opens new window) 模块包含 CSS 中与视觉媒体中可滚动溢出处理相关的特性。

overflow (opens new window) 是简写属性,其设置了元素溢出时所需的行为,即当元素的内容太大而无法适应它的区块格式化上下文 (opens new window)时。

p {
  width: 100px;
  height: 100px;
  overflow: hidden;
}