gpt4 book ai didi

html - CSS 属性选择器对 href 不起作用

转载 作者:行者123 更新时间:2023-11-27 23:06:24 26 4
gpt4 key购买 nike

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

关于html - CSS 属性选择器对 href 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58721168/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com