all - CSS(层叠样式表) 编辑
CSS all
简写属性 将除却 unicode-bidi
与 direction
之外的所有属性重设至其初始值,或继承值。
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
语法
/* Global values */
all: initial
all: inherit
all: unset
/* CSS Cascading and Inheritance Level 4 */
all: revert;
all
属性is specified as one of the CSS 全局 keyword values. Note that none of these values affect the unicode-bidi
与 direction
这两个属性。
取值
initial
- 该关键字代表改变该元素或其父元素的所有属性至初始值。
inherit
- 该关键字代表改变该元素或其父元素的所有属性的值至他们的父元素属性的值。inherited values
unset
- 该关键字代表如果该元素的属性的值是可继承的,则改变该元素或该元素的父元素的所有属性的值为他们父元素的属性值,反之则改变为初始值。
revert
- 指定依赖于声明所属的样式表原点的行为:
- User-agent origin
- 相当于
unset
- User origin
- 将层叠回滚到用户代理级别,以便计算指定的值,就好像没有为该元素指定作者级别或用户级别规则。
- Author origin
- 将层叠回滚到用户级别,以便计算指定的值,就好像没有为元素指定作者级规则。出于
revert
的目的,“作者”原点包括“覆盖”和“动画”原点。
正式语法
initial | inherit | unset | revert
示例
HTML
<blockquote id="quote">
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
</blockquote>
Phasellus eget velit sagittis.
CSS
body {
font-size: small;
background-color: #F0F0F0;
color: blue;
}
blockquote {
background-color: skyblue;
color: red;
}
结果
没有 all
属性
<blockquote>
使用浏览器默认样式,以及另外的定义的背景色与文字颜色。它是一个 block 元素:它之后的文字位于它的下方。
all:unset
<blockquote>
没有使用浏览器默认样式:它现在是一个 inline 元素(初始值),其 background-color
为 transparent
(初始值),但其 font-size
仍为 small
(继承值) ,其 color
为 blue
(继承值)。
all:initial
<blockquote>
没有使用浏览器默认样式:它现在是一个 inline 元素(初始值),其 background-color
为 transparent
(初始值),其 font-size
为 normal
(初始值),其 color
为 black
(初始值)。
all:inherit
<blockquote>
没有使用浏览器默认样式:它现在是一个 block 元素(继承自其父元素 <body>
),其 background-color
为 transparent
(继承值),其 font-size
为 small
(继承值) ,其 color
为 blue
(继承值)。
规范
规范 | 状态 | 备注 |
---|---|---|
CSS Cascading and Inheritance Level 4 all | Candidate Recommendation | 添加属性值 revert 。 |
CSS Cascading and Inheritance Level 3 all | Candidate Recommendation | 初始定义。 |
初始值 | There is no practical initial value for it. |
---|---|
适用元素 | all elements |
是否是继承属性 | 否 |
计算值 | as the specified value applies to each property this is a shorthand for. |
Animation type | as each of the properties of the shorthand (all properties but unicode-bidi and direction ) |
浏览器兼容性
BCD tables only load in the browser
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.参见
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论