gpt4 book ai didi

CSS 特异性 - 定义类和 ID

转载 作者:行者123 更新时间:2023-12-02 21:35:35 26 4
gpt4 key购买 nike

我一直在阅读有关特异性的内容,坦率地说,我很惊讶我之前没有正确了解这一点,因为我亲眼目睹了如果 CSS 声明错误,特异性可能会带来的问题方式。

所以,我对这个主题做了一些研究,现在我了解了计算特异性的规则。然而,在我的发现过程中,我留下了三个问题,我希望你们能帮助我解决。

  1. 首先,在涉及 CSS 特异性时,我注意到 one source计算中包含伪元素,而 another告诉您将它们排除在计算之外。这纯粹是一个可选的事情,还是我应该包括它们?

  2. 其次,我应该在标识符之上声明类有什么具体原因吗?例如,我已经对我的开发 CSS 文件进行了分区,在“页脚”部分中,我有 #footer#footer-container.grid .one-third,按此顺序声明。这完全没问题吗,还是我应该把它们换过来?定义的规则如下,以表明这两个类不包含任何冲突的属性:

    #footer {
    background: #e4e4e4;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #666666;
    overflow: hidden;
    padding-bottom: 1em;
    width: 100%;
    }
    #footer-container {
    margin: 0 auto;
    width: 100%;
    min-width: 1000px;
    }
    .grid {
    margin-right: 2.1%;
    float: left;
    display: inline;
    position: relative;
    }
    .one-third {
    width: 31.9%;
    }
  3. 最后,有一个关于按字母顺序列出 CSS 属性的简单问题。我完全理解这是可选的,但是以我上面对 #footer 的声明为例,是否有对 bordermarginpadding,如字母顺序(bottom; left; right; top),或声明为速记形式(top; right;bottom; left )?

非常感谢!

最佳答案

  1. Firstly, when relating to CSS specificity, I've noticed that one source includes pseudo elements in the calculation, while another tells you to leave them out of the calculation. Is this purely an optional thing, or should I include them?

    这对我来说是新闻;看起来 CSS2.1 之前的伪元素最初应该在计算选择器特异性时被忽略。这篇文章说将它们排除在计算之外是大约十年前发表的,当时正值 CSS 2 级重构的中期。这就是1998 CSS2 recommendation说(作为引用,该文章中也引用了该内容,但它链接到的 URL 重定向到已更改的规范的最新版本):

    A selector's specificity is calculated as follows:

    • count the number of ID attributes in the selector (= a)
    • count the number of other attributes and pseudo-classes in the selector (= b)
    • count the number of element names in the selector (= c)
    • ignore pseudo-elements.

    CSS2.1 ,以及最新的Selectors standard ,在计算特异性时,必须像普通类型选择器一样对伪元素进行计数。

    也许更奇怪的是CSS1在特异性方面,伪元素的规则与当前标准相同:

    Pseudo-elements and pseudo-classes are counted as normal elements and classes, respectively.

    这让我相信 CSS2.0 中的更改最终在 CSS2.1 中被逆转,因此它不会破坏恰好依赖于该行为的现有(遗留)样式表,和/或因为它根本没有破坏不包含伪元素是有意义的,因为您可以像对待实际元素一样对它们应用样式。

  2. Secondly, is there any specific reason why I should declare classes above identifiers? For instance, I've already sectioned my development CSS file, and in the 'footer' section, I have #footer, #footer-container, .grid and .one-third, declared in this order. Is this perfectly fine, or should I switch them around?

    无论您将类(class)放在 ID 之前,都应该没有区别,只要您的两个类(class)遵循它们的顺序,您的两个 ID 也是如此。即使假设所有这些规则恰好匹配同一元素,ID 也应优先于需要覆盖的任何属性的类。

  3. Lastly, just a quick question about listing CSS properties in alphabetical order. I fully understand that this is optional, but using my declaration for #footer above as an example, is there any preference for border, margin or padding, as in alphabetical (bottom; left; right; top), or declared as written in shorthand (top; right; bottom; left)?

    如果您单独声明普通属性,那么完全取决于您想要如何排序它们。为了简单起见,我当然会遵循速记已经列出的顺序。

    仅供引用,简写中的顺序是按原样排列的,因为如果您从字面上连接点,则顺序实际上是从顶部开始顺时针方向。

关于CSS 特异性 - 定义类和 ID,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21455250/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com