您的位置:首页 > Web前端 > CSS

[CSS基础]在一个网页中使用多种不同链接风格的CSS.

2005-06-07 10:52 716 查看
(http://community.csdn.net/Expert/topic/3256/3256680.xml?temp=.1132166)
定义自己的伪类:

.toplink a {
color: #FFFFFF;
text-decoration: underline;}
.topLink a:hover {
color: #FFFFFF;
text-decoration: underline;}
.topLink a:visited {
color: #FFFFFF;
text-decoration: underline;}
.topLink a:active {
color: #FFFFFF;
text-decoration: underline;font-weight: bold;
}

用<td class="topLink">引用
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐