本文介绍了如何显示没有下划线的超链接?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何显示没有下划线的超链接?

How do you display hyperlinks without an underline ?

推荐答案

a:link {
    text-decoration: none;
    color: #0000CC;
}
a:visited {
    text-decoration: none;
    color: #0000CC;
}
a:hover {
    text-decoration: underline;
}
a:active {
    text-decoration: underline;
}

(至少如何。)

哦,和上面的顺序 ,顺便说一下。

Oh, and the order above matters, by the way.

这篇关于如何显示没有下划线的超链接?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 23:55