.attr1 a[href="./a.rmvb"] {
color: red;
}
E[class=~="download"] 以空格隔开
E[class=|="download"] 表示要么一个单独的属性值,要么这个属性值是以 — 分格的
E[class=*="download"] 包含 可以在任意位置
E[class=^="download"] 起始位置
E[class=$="download"] 结束位置
section:nth-of-type(4){ 第四个 section 元素
}
section:nth-child(4){ 第四个元素,且该元素必须为section
}