如何更改“text-decoration:none;”链接的颜色?属性?
我已经尝试将它放在span元素中,因为它已被建议,但它不起作用。
<html>
<style>
a:link {
text-decoration:none; /* unvisited link */
color: blue;
}
</style>
<body>
<a href="https://www.google.co.il/?gfe_rd=cr&ei=lq8gU_yiAcHj_Abj1oCoDg">google</a>
</body>
</html>