a [href ^ =“…”]在CSS中做什么?

我以前使用过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>

以上是 a [href ^ =“…”]在CSS中做什么? 的全部内容, 来源链接: utcz.com/qa/417070.html

回到顶部