我想为指向某个网站的出站会员反向链接分配下划线CSS规则。每个反向链接都是唯一的,但根域是相同的。尝试了一些在这里找到的建议,但没有一个起作用。
a[href^="cochrane.org"] {
text-decoration:underline!important;
}
答案 0 :(得分:1)
使用a[href*="cochrane.org"]
代替a[href^="cochrane.org"]
,它将起作用或尝试以下代码
a{
text-decoration:none;
}
a[href*="cochrane.org"] {
text-decoration:underline!important;
}
<a href="test.com" >Link One</a>
<a href="test.com" >Link Two</a>
<a href="https://www.cochrane.org/" >cochrane Home Page</a>
<a href="test.com" >Link Three</a>
<a href="https://www.cochrane.org/news" >cochrane News</a>