小编典典

CSS属性选择器不起作用

css

我需要在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; }

为什么背景不是红色的?


阅读 1558

收藏
2020-05-16

共1个答案

小编典典

在href后面使用$。这将使属性值匹配字符串的结尾。

a[href$='.pdf'] { /*css*/ }






E[foo]        an E element with a "foo" attribute (CSS 2)
E[foo="bar"]  an E element whose "foo" attribute value is exactly equal to "bar" (CSS 2)
E[foo~="bar"] an E element whose "foo" attribute value is a list of whitespace-separated values, one of which is exactly equal to "bar" (CSS 2)
E[foo^="bar"] an E element whose "foo" attribute value begins exactly with the string "bar" (CSS 3)
E[foo$="bar"] an E element whose "foo" attribute value ends exactly with the string "bar" (CSS 3)
E[foo*="bar"] an E element whose "foo" attribute value contains the substring "bar" (CSS 3)
E[foo|="en"]  an E element whose "foo" attribute has a hyphen-separated list of values beginning (from the left) with "en" (CSS 2)
2020-05-16