标签: jquery css anchor
我的网站上有第三方链接,我想要样式。但它没有我可以定位的任何类或id。它唯一拥有的是它独特的href值。 是否可以根据其href值设置锚标记的样式。
答案 0 :(得分:5)
您可以使用href css选择器根据链接设置a标记样式:
a
a[href="your url here"]{ background:red; }
Demo
答案 1 :(得分:2)
您可以使用css attribute选择器,如:
attribute
a[href="http://google.com"]{ your css code here ... }
更多信息 here 。
感谢。