各位:我看了网上说下面这样的代码应该能去掉链接的下划线,在博客园的随笔里面去不掉,
<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>
有知道的烦请告知,谢谢。
当年话下