1111111111
.first,span{color:green;}
这个不行, 这个代表第一段和所有span里的内容变绿。 但是要求是 只要第二段的span里的内容变绿。
.first,span{color:green;} 我这样是对的,
它要求你同时更改first和second才会判定你成功,你只改了first。下面这样:
.first,#second span{
color:green;
}