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