编写一个CSS,要求页面内所有超级链接都没有下划线;超级链接在点击前是蓝色;鼠标经过时时绿色;鼠标点击时
2个回答
展开全部
你在css样式表里加上
a:link {
color: #0099CC;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #666666;
}
a:hover {
text-decoration: none;
color: #00CC00;
}
a:active {
text-decoration: none;
color: #FF0000;
}
试试。
a:link {
color: #0099CC;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #666666;
}
a:hover {
text-decoration: none;
color: #00CC00;
}
a:active {
text-decoration: none;
color: #FF0000;
}
试试。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询