overflow
边框(Border)
Border-color
Border-image
Border-radius
box-shadow
背景(Background)
background-origin
background-clip
Background-size
Multiple backgrounds
颜色(Color)
HSL colors
HSLA colors
opacity
RGBA colors
文本(Text effects)
text-shadow
text-overflow
word-wrap
用户界面(User-interface)
box-sizing
resize
outline
outline-width
outline-style
outline-offset
outline-color
nav-index
nav-up
nav-right
nav-down
nav-left
基础盒模型(Basic box model)
overflow
overflow-x
overflow-y
内容(Generated Content)
content
其它模块(Other modules)
media queries
Speech
columns
column-width
column-span
column-rule
column-rule-color
column-rule-width
column-rule-style
column-gap
column-fill
column-count
column-break-before
column-break-after
@font-face

选择器(selectors)

子串匹配的属性选择符 E[att^="val"]
子串匹配的属性选择符 E[att$="val"]
子串匹配的属性选择符 E[att*="val"]
结构性伪类 E:root
结构性伪类 E:nth-child(n)
结构性伪类 E:nth-last-child(n)
结构性伪类 E:nth-of-type(n)
结构性伪类E:nth-last-of-type(n)
结构性伪类 E:last-child
结构性伪类 E:first-of-type
结构性伪类 E:only-child
结构性伪类 E:only-of-type
结构性伪类 E:empty
UI元素状态伪类 E:checked
UI元素状态伪类 E:enabled
UI元素状态伪类 E:disabled
UI元素状态伪类 E::selection
否定伪类 E:not(s)
目标伪类 E:target
通用兄弟元素选择器 E ~ F

语法:

overflowvisible | auto | hidden | scroll

相关属性:overflow-x , overflow-y

取值:

visible:
不剪切内容也不添加滚动条。假如显式声明此默认值,对象将被剪切为包含对象的window或frame的大小。并且clip属性设置将失效
auto:
此为body对象和textarea的默认值。在需要时剪切内容并添加滚动条
hidden:
不显示超过对象尺寸的内容
scroll:
总是显示滚动条

说明:

  1. 检索或设置当对象的内容超过其指定高度及宽度时如何管理内容。
  2. 设置textarea对象为hidden值将隐藏其滚动条。
  3. 对于table来说,假如table-layout属性设置为fixed,则td对象支持带有默认值为hidden的overflow属性。如果设为hidden,scroll或者auto,那么超出td尺寸的内容将被剪切。如果设为visible,将导致额外的文本溢出到右边或左边(视direction属性设置而定)的单元格。
  4. 自IE5开始,此属性在MAC平台上可用。

兼容性:

类型 IEInternet Explorer FirefoxFirefox ChromeChrome OperaOpera SafariSafari
版本 (√)IE6 (√)Firefox 2.0 (√)Chrome 1.0.x (√)Opera 9.63 (√)Safari 3.1
(√)IE7 (√)Firefox 3.0 (√)Chrome 2.0.x (√)Safari 4
(√)IE8 (√)Firefox 3.5

示例: