这个情况css是筛选不出来的呢,就好比一碗水里面你取一瓢,取上来的还是水呢!
以你现在的代码来看,
泛选择 .hebody .loc (这样写就选择了所有的hebody下的loc类)
单独选择 .header div:nth-child(2) .loc (这样写就单独选择了第一个含有loc类的容器了)
希望能帮到你!
标签是指的什么?是说元素吗?如:
.aaa
{
background-color:Red
}
.aaa A
{
background-repeat:repeat-x
}
第一个就是类,第二个是元素,类是在html里给某个html元素指定class,如:<div class='aaa'><a href='www.baidu.com'>百度搜索</a></div>,而元素则不用再指定。