html里超链接下的横线怎样去掉?
发布网友
发布时间:2022-03-29 14:50
我来回答
共4个回答
热心网友
时间:2022-03-29 16:19
如果是用Dreamweaver,可以使用“修改|页面属性”下的对话诓,里面有链接样式可以根据需要选择,这是针对全文链接进行的设置。
修改源代码也可以:
把<body>标签改成<body style="text-decoration:none ">,可以使全文链接内容的下划线统统消失!
也可以修改链接标签,例:
<a href="http://www.baidu.com">百度</a>
这样改:
<a href="http://www.baidu.com" style="text-decoration:none ">百度</a>
也就是说,在<a>标签内添加"style"属性即可。
如果使用了CSS,可以这样操作:
.
{
font-size:24px
text-decoration: none;
}
综上所述,其方法就在于一条属性:text-decoration: none;
热心网友
时间:2022-03-29 17:37
用Dreamweaver 编辑
CTRL +J 选择 “连接”
在右边面版下方 选择“始终无下滑线”
热心网友
时间:2022-03-29 19:12
<style type="text/css">
<!--
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
-->
</style>
加到<HEAD> </HEAD>中间
热心网友
时间:2022-03-29 21:03
<style
type="text/css">
<!--
a:link
{
text-decoration:
none;
}
a:visited
{
text-decoration:
none;
}
a:hover
{
text-decoration:
none;
}
a:active
{
text-decoration:
none;
}
-->
</style>
加到<HEAD>
</HEAD>
中间