html里超链接下的横线怎样去掉?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html里超链接下的横线怎样去掉?相关的知识,希望对你有一定的参考价值。

html里超链接下的横线怎样去掉?

如果是用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,可以这样操作:
.baidu

font-size:24px
text-decoration: none;


综上所述,其方法就在于一条属性:text-decoration: none;
参考技术A <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>中间本回答被提问者和网友采纳
参考技术B 用Dreamweaver 编辑
CTRL +J 选择 “连接”
在右边面版下方 选择“始终无下滑线”
参考技术C <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>
中间

IOS 去掉导航栏(UINavigationBar)下方的横线

这是导航栏的问题,将下边的代码放在  viewWillAppear  方法中就可以实现效果:

 

 

- (void)viewWillAppear:(BOOL)animated{

    

    // Called when the view is about to made visible. Default does nothing    

    [super viewWillAppear:animated];

  

    //去除导航栏下方的横线

    [navigationBar setBackgroundImage:[UIImage imageWithColor:[self colorFromHexRGB:@"33cccc"]]

                       forBarPosition:UIBarPositionAny

                           barMetrics:UIBarMetricsDefault];

    [navigationBar setShadowImage:[UIImage new]];

    

}

以上是关于html里超链接下的横线怎样去掉?的主要内容,如果未能解决你的问题,请参考以下文章

html中如何去掉超链接的下划线(html取消超链接下划线)

css的类选择器是选择中横线还是下划线为了连接符

制作网页时如何去掉超链接文字下的下划线?

div+css中做链接时如何去掉下面的横线?

下划线怎么消除?

在HTML中怎么去掉超链接的下划线?