前端之家收集整理的这篇文章主要介绍了
html – 访问后如何使链接不改变颜色?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
文字装饰影响下划线,而不是颜色.
要将访问颜色设置为默认值,请尝试:
a {
color: blue;
}
要么
a {
text-decoration: none;
}
a:link,a:visited {
color: blue;
}
a:hover {
color: red;
}
原文链接:https://www.f2er.com/html/230810.html