HTML 链接下划线的问题
<htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="Content-Type"content...
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
a:link {
color: #00F;
text-decoration:none;
}
a:visited {
color: #F00;
text-decoration:underline;
}
a:hover {
color: #F93;
text-decoration:underline;
}
a:active {
color: #3C0;
text-decoration:none;
}
-->
</style></head>
<body>
<table width="431" border="1" cellspacing="0">
<tr>
<td height="31" colspan="2">手机</td>
<td colspan="2">电脑</td>
</tr>
<tr>
<td width="74" height="26"><a href="1.html">诺基亚</a></td>
<td width="95"><a href="1.html">摩托罗拉</a></td>
<td width="117"><a href="1.html">联想</a></td>
<td width="127"><a href="1.html">戴尔</a></td>
</tr>
</table>
</body>
</html>
悬停时有下滑线,可是访问过后的下滑线就没显示了 展开
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
a:link {
color: #00F;
text-decoration:none;
}
a:visited {
color: #F00;
text-decoration:underline;
}
a:hover {
color: #F93;
text-decoration:underline;
}
a:active {
color: #3C0;
text-decoration:none;
}
-->
</style></head>
<body>
<table width="431" border="1" cellspacing="0">
<tr>
<td height="31" colspan="2">手机</td>
<td colspan="2">电脑</td>
</tr>
<tr>
<td width="74" height="26"><a href="1.html">诺基亚</a></td>
<td width="95"><a href="1.html">摩托罗拉</a></td>
<td width="117"><a href="1.html">联想</a></td>
<td width="127"><a href="1.html">戴尔</a></td>
</tr>
</table>
</body>
</html>
悬停时有下滑线,可是访问过后的下滑线就没显示了 展开
3个回答
展开全部
因为你写的CSS就是这样的效果呀没下划线的!要想浏览后有下划线改一下这里就好了!
a:link {
color: #00F;
text-decoration:none;
}
改成这样!显示下划线!
a:link {
color: #00F;
text-decoration:underline;
}
希望能帮到你!如果这样还不行的话那只能说你有的地方重写了!
a:link {
color: #00F;
text-decoration:none;
}
改成这样!显示下划线!
a:link {
color: #00F;
text-decoration:underline;
}
希望能帮到你!如果这样还不行的话那只能说你有的地方重写了!
追问
怎么才可以未访问(有)和已访问(没)一个有下划线一个没
追答
这样呀!那就这样写就好了!
a{
text-decoration:underline;
}
a:hover {
color: #F93;
text-decoration:none;
}
就写这两个就可以实现未访问(有)和已访问(没)的效果了!其它的那些不用写也行了!但如果要写的话都是写这样的一句:text-decoration:none;这是没下划线的意思!希望能帮到你!
展开全部
在做之前先看一下这个吧
a:link 指正常的未被访问过的链接。
a:active 指正在点的链接。
a:hover 指鼠标在链接上。
a:visited 指已经访问过的链接。
text-decoration 是文字修饰效果的意思。
none 参数表示超链接文字不显示下划线。
underline 参数表示超链接的文字有下划线。
改成
<style type="text/css">
<!--
a:link {
color: #00F;
text-decoration:none;
}
a:visited {
color: #F00;
text-decoration:underline;
}
a:hover {
color: #F93;
text-decoration:underline;
}
a:active {
color: #3C0;
text-decoration:underline;
}
-->
</style>
不过有一点要注意的是,当你在这个页上点了链接后,如果页面跳转了,那在新打开的页面上你刚点过的那个链接同样也不会有下线的,
a:link 指正常的未被访问过的链接。
a:active 指正在点的链接。
a:hover 指鼠标在链接上。
a:visited 指已经访问过的链接。
text-decoration 是文字修饰效果的意思。
none 参数表示超链接文字不显示下划线。
underline 参数表示超链接的文字有下划线。
改成
<style type="text/css">
<!--
a:link {
color: #00F;
text-decoration:none;
}
a:visited {
color: #F00;
text-decoration:underline;
}
a:hover {
color: #F93;
text-decoration:underline;
}
a:active {
color: #3C0;
text-decoration:underline;
}
-->
</style>
不过有一点要注意的是,当你在这个页上点了链接后,如果页面跳转了,那在新打开的页面上你刚点过的那个链接同样也不会有下线的,
追问
怎么才可以未访问(有)和已访问(没)一个有下划线一个没
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
a:active {
color: #3C0;
text-decoration:none;
}把none改成underline
a:active {
color: #3C0;
text-decoration:underline;}
color: #3C0;
text-decoration:none;
}把none改成underline
a:active {
color: #3C0;
text-decoration:underline;}
追问
active 改的是鼠标按的那瞬间有没下滑线 我要的是访问后的 有下滑线 代码我打了 可是就是显示不出
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询