impress 2019-06-28
你或许知道 CSS 是 Cascading Style Sheets(层叠样式表)的缩写。但你不一定真正的理解了其中层叠的含义。
你可能会以为层叠指的是选择器的优先级,但这是不准确的。
对于浏览器页面上某个元素的某个属性值,它可能会有多个来源(Cascading Origins):
用户代理即是指浏览器,https://cs.chromium.org/chromium/src/third_party/blink/renderer/core/css/html.css 这里是 chromium 的样式表。现在我们常常会使用 reset.css 或者 normalize.css 使的各个浏览器之间默认样式统一。
用户自定义样式虽然规范中有,但从 chrome 33 起,开始不支持用户自定义样式表,而是建议使用扩展来实现。
网站提供的样式表,则是我们所提供的 css 的样式。
来源之间是存在优先级的(和选择器的优先级是两回事),优先级高的会覆盖优先级低。我们来验证一下:
https://codepen.io/gygy/pen/m...
可以看到 ruby > rt { font-size: 50% }
是来自 user agent stylesheet。而 rt { font-size: 24px }
来自网站作者,如果单论选择器的权重,它是低于 ruby > rt
的。
但是它依然覆盖了 user agent stylesheet 的 font-size
属性。原因就是 css 会优先根据属性的来源判断。对于相同来源的属性,再应用权重规则。
我们也可以通过 !important 声明某个属性的重要性,再结合它的来源,于是有如下的优先级规则(忽略用户自定义的样式):
其中对于 CSS 动画,在给定时间中 CSS 只会从某一个 @keyframes 中获取值,而不是某几个 @keyframe 的混合。@keyframes 里定义的值会覆盖普通值,但是优先级低于 !important。
对于同一来源的 CSS。我们要确定某个元素的某个属性的值,涉及到该元素的选择器的权重问题。选择器大致分为几类:
它们之间的权重规则计算:
A selector’s specificity is calculated for a given element as follows:
- count the number of ID selectors in the selector (= A)
- count the number of class selectors, attributes selectors, and pseudo-classes in the selector (= B)
- count the number of type selectors and pseudo-elements in the selector (= C)
- ignore the universal selector
If the selector is a selector list, this number is calculated for each selector in the list. For a given matching process against the list, the specificity in effect is that of the most specific selector in the list that matches.
简单的说来 id 优先级最高,其次是类和伪类再次是元素和伪元素。然后根据它们各自的数量判断。
其实说到底不建议写过于复杂的选择器,会影响性能和维护代码。建议采用 BEM 规范,书写 CSS 选择器。
为了得到 CSS 的值的生成有很多个步骤:
width: auto
在此过程中,会被计算得出精确的像素值。举几个例子说明一下上述步骤:
参考链接