官术网_书友最值得收藏!

Calculating the weight of selectors

A class is worth 10 points, so .secondary-section is worth 10 points. A plain old element such as p or div is worth 1 point. Therefore, the .secondary-section p selector is 11 points. The .secondary-section div figure img selector is 13 points. Let's create another selector below the one worth 13 points and we have .secondary-section img. Then, let's change the border-color to blue:

.secondary-section div figure img { 
   border: 10px solid #333; 
} 
.secondary-section img {
border: 10px solid blue;
}

When we save this, our border is going to remain gray because the point value of our last selector is only 11; it's getting beat out by the previous selector's point value of 13. That's the problem with these long descendant selectors that are longer than they should be, they get weighted heavier:

Following is the output of preceding code:

IDs have a point value of 100 points, which is why I advise against using them. They have so much unnecessary weight to them and drive the specificity level through the roof. Assigning point values kind of sounds like keeping score on a video game, but the difference is you want to try and keep your point value as low as possible on this game. If you do that, you will be able to write less complicated CSS.

主站蜘蛛池模板: 汝州市| 县级市| 保德县| 随州市| 丽水市| 潞城市| 浠水县| 新平| 乐至县| 锦州市| 柘荣县| 沁源县| 永州市| 镇江市| 广元市| 辽源市| 广元市| 靖远县| 张家界市| 新闻| 恩施市| 百色市| 攀枝花市| 屯留县| 乌恰县| 远安县| 宁国市| 汝南县| 东明县| 苏尼特右旗| 蚌埠市| 白山市| 高淳县| 邢台县| 普定县| 如东县| 夏河县| 闸北区| 体育| 广汉市| 资阳市|