web-dev-qa-db-ja.com

CSS属性セレクターはhrefを機能しません

別の色と画像のリンクを変更するには、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; }

背景が赤色にならないのはなぜですか?

95

Hrefの後に$を使用します。これにより、属性値が文字列の末尾に一致するようになります。

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

JSFiddle: http://jsfiddle.net/UG9ud/

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)

ソース: http://www.w3.org/TR/selectors/

179
Book Of Zeus