all - CSS(层叠样式表) 编辑

CSS all 简写属性 将除却 unicode-bididirection 之外的所有属性重设至其初始值,或继承值。

语法

/* 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-bididirection 这两个属性。

取值

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-colortransparent (初始值),但其 font-size 仍为 small (继承值) ,其 colorblue (继承值)。

all:initial

<blockquote> 没有使用浏览器默认样式:它现在是一个 inline 元素(初始值),其 background-colortransparent (初始值),其 font-sizenormal (初始值),其 colorblack(初始值)。

all:inherit

<blockquote> 没有使用浏览器默认样式:它现在是一个 block 元素(继承自其父元素 <body>),其 background-colortransparent (继承值),其 font-sizesmall (继承值) ,其 colorblue (继承值)。

规范

规范状态备注
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 typeas 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.

参见

CSS 通用属性值: initial, inherit and unset.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:160 次

字数:16833

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文