各位:我看了网上说下面这样的代码应该能去掉链接的下划线,在博客园的随笔里面去不掉,
<a href="#" style="text-decoration:none;">去掉下划线</a>
后来,博客园解释说要自定义css,那么下面的代码为什么也去不到,
<style>
wh{
text-decoration: none;
}
</style>
<a class="wh" href="#" style='text-decoration:none;'> 我想去掉下划线</a>
或者
<style>
a{
text-decoration: none;
}
</style>
<a href="#" style='text-decoration:none;'> 我想去掉下划线</a>
有知道的烦请告知,谢谢。
试试下面的css代码
a.wh:link, a.wh:active, a.wh:visited {
text-decoration: none;
}
谢谢回复,不过试了试还是不行,我也不知道怎么了。
@凤中数学静雅斋:
text-decoration:underline; /*加下划线*/
text-decoration:none; /*去掉下划线*/
@凤中数学静雅斋:冒号是不是中文下的 改为英文的
<style type="text/css">
谢谢回复,不过试了试还是不行,我也不知道怎么了。
最后添加了这一句,问题完美解决。
border-bottom: 0px solid blue;
谢谢各位大神。