1. ホーム
  2. html

[解決済み] CSS属性セレクタでhrefが機能しない

2022-10-08 02:29:48

質問

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; }

なぜ背景が赤くないのか?

どのように解決するのですか?

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/