当鼠标悬停在超级链接显示下划线
那位高人帮下手:当鼠标悬停在超级链接上显示下划线并自动变色,而在此前已经用代码去除过下划线的了(a{text-decoration:blink})!...
那位高人帮下手:当鼠标悬停在超级链接上显示下划线并自动变色,而在此前已经用代码去除过下划线的了(a {text-decoration: blink})!
展开
3个回答
展开全部
使用CSS解决
代码如下,放在<head>之间
<style type="text/css">
<!--
a:link {
color: #330099;
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #FF0000;
}
a:active {
text-decoration: none;
}
-->
</style>
代码如下,放在<head>之间
<style type="text/css">
<!--
a:link {
color: #330099;
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #FF0000;
}
a:active {
text-decoration: none;
}
-->
</style>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
使用CSS解决
代码如下,放在<head>之间
<style
type="text/css">
<!--
a:link
{
color:
#330099;
text-decoration:
none;
}
a:visited
{
text-decoration:
none;
}
a:hover
{
text-decoration:
underline;
color:
#FF0000;
}
a:active
{
text-decoration:
none;
}
-->
</style>
代码如下,放在<head>之间
<style
type="text/css">
<!--
a:link
{
color:
#330099;
text-decoration:
none;
}
a:visited
{
text-decoration:
none;
}
a:hover
{
text-decoration:
underline;
color:
#FF0000;
}
a:active
{
text-decoration:
none;
}
-->
</style>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
在外观-自定义-额外CSS样式表添加:
a:link {
color: #330099;
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #FF0000;
}
a:active {
text-decoration: none;
}
a:link {
color: #330099;
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #FF0000;
}
a:active {
text-decoration: none;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询