问答详情
源自:9-3 权值计算-特殊性

标签权值的

#footer .note p{color:yellow;}中的#footer .note p是什么意思

p span.warning{color:purple;} 中的p span.warning是什么意思

.warning{color:white;} /*权值为10*/这句的权值代表ID选择器的权值也是10吗

提问者:邪灵归来 2017-06-20 15:54

个回答

  • 等候稻香
    2017-06-20 16:04:19
    已采纳

    第一行,#footer是文档中有一个div id标签 (名为footer), 同理有一个div class标签 (名为note)p指的是段落标签,这三个标签的格式设置颜色为黄色,该行有三个标签,权值一共为100+10+1=111

    第二行:设置两个标签(段落标签p、span class标签(名为warning))颜色为紫色,这两个标签权值之和为1+10=11;

    .warning是类选择器,权值为10;id选择器的权值为100