Questions tagged «css-specificity»

7
如何计算CSS特异性中的点
研究特异性时,我偶然发现了这个博客- //www.htmldog.com/guides/cssadvanced/specificity/ 它指出,特异性是CSS的得分系统。它告诉我们元素值1分,类值10分,ID值100分。最重要的是,这些点是合计的,总数就是选择者的特异性。 例如: 身体 = 1点 身体.wrapper = 11点 身体.wrapper#容器 = 111点 因此,使用这些要点,我期望以下CSS和HTML导致文本为蓝色: #a { color: red; } .a .b .c .d .e .f .g .h .i .j .k .l .m .n .o { color: blue; } <div class="a"> <div class="b"> <div class="c"> <div class="d"> <div class="e"> <div class="f"> …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.