0

这些天,多重超链接样式仍然有效吗?

我以前这样做的方式就像

.linkStyle2 a {
    color: #999;
    text-decoration: none;
}
.linkStyle2 a:link {
    color: #999;
    text-decoration: none;
}
.linkStyle2 a:visited {
    color: #666;
    text-decoration: none;
}
.linkStyle2 a:hover {
    color: #CCC;
    text-decoration: none;
}
.linkStyle2 a:active {
    color: #999;
    text-decoration: none;
}
</style>


<span class="linkStyle2">

<a href="test.html">test link one</a>

</span>

它似乎不再起作用了..即使将它们作为类插入超链接中..这真的很奇怪。

4

2 回答 2

0

Corrupt ANSI characters was reverting the style tag into:

<style type=â€text/cssâ€&gt;
于 2013-01-28T23:14:38.110 回答
0

阅读:http ://www.w3schools.com/css/css_pseudo_classes.asp

在您的情况下:

.linkStyle2 a {
   color: #999;
   文字装饰:无;
}
.linkStyle2 a:visited{
   颜色:#666;
}
.linkStyle2 a:hover{
   颜色:#CCC;
}

于 2013-01-28T22:56:30.377 回答