主题:  请问一个网页中如何设定两种链接样式?

xiaofeihong

职务:普通成员
等级:1
金币:0.0
发贴:35
#12004/9/19 17:09:26
是不是在css中设置?请各位帮忙!




职务:管理员
等级:1
金币:11.0
发贴:901
#22004/9/20 13:18:56
<style>
a.top { color:black }
a.main {color:white }
</style>
<body bgcolor="red">
<a href="http:///" class="top">Top Style</a><br>
<a href="http:///" class="main">Main Style</a>



ankee

职务:普通成员
等级:1
金币:0.0
发贴:2
#32004/9/21 15:28:43
俺用的两种链接方式,发下
<style>
a:link {
    font-size: 12px;
    color: #7bae08;
    text-decoration: none;
}
a:visited {
    font-size: 12px;
    
    text-decoration: none;
color:#7bae08;
}
a:hover {
    font-size: 12px;
    color: #7bae08;
    text-decoration:underline;
}

a:active {
    font-size: 12px;
    color: #FF6600;
    text-decoration: none;
}
a.a1:link {
    font-size: 12px;
    color: #FF6600;
    text-decoration: none;
}
a.a1:visited {
    font-size: 12px;
    
    text-decoration: none;
color:#FF6600;
}
a.a1:hover {
    font-size: 12px;
    color: #FF6600;
    text-decoration:underline;
}

a.a1:active {
    font-size: 12px;
    color: #FF6600;
    text-decoration: none;
}
</style>