问答详情
源自:9-4 为所欲为 - 选择器最高层级!important

关于第八行代码的三种变换

1、p.first {color:green;} 2、p .first {color:green;} 3、.first {color:green;} 三种结果不同。第一种选择器格式好像没有涉及。第二种是组选择器vs表选择器?第三种是表选择器。这三种的权值还有继承性....

提问者:月寺 2015-02-13 00:22

个回答

  • 凯百万
    2015-02-13 13:03:20
    已采纳

    p.first {color:green;} 是指带有first类的p标签

    p .first {color:green;} 是指p标签下带有first类的所有子集标签

    .first {color:green;} 是指带有first类的所有标签

    三者都有继承性