我需要在CSS中使用属性选择器来更改不同颜色和图像上的链接,但是它不起作用。
我有这个HTML:
<a href="/manual.pdf">A PDF File</a>
而这个CSS:
a {
display: block;
height: 25px;
padding-left: 25px;
color:#333;
font: bold 15px Tahoma;
text-decoration: none;
}
a[href='.pdf'] { background: red; }
为什么背景不是红色的?
14
+1是因为我不知道a [attribute ='AttributeName']
—
SpaceBeers 2012年
@SpaceBeers,那就是
—
JMM 2012年
element[attribute_name="attribute_value"]
。