gpt4 book ai didi

css - a[href^ ="..."] 在 CSS 中做什么?

转载 作者:数据小太阳 更新时间:2023-10-29 09:13:30 24 4
gpt4 key购买 nike

我以前使用过 CSS,我遇到了下面的 CSS 样式,不知道它的作用。

a[href^="http:"] {
background: url(img/keys.gif) no-repeat right top;
}
a[href^="http://mysite.com"], a[href^="http://www.mysite.com"] {
background-image: none; padding-right:0;
}

最佳答案

a[href^="http:"] 

选择 <a> href 的元素属性值以 http: 开头.

例如:

p[title^="para"] {background: green;}

将匹配以下内容:

<p title="paragraph"> This paragraph should have a green background. </p> 

关于css - a[href^ ="..."] 在 CSS 中做什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3859101/

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