博客园插入超链接时如何取消下划线
在HTML标签中添加 style="text-decoration: none;" 即可
有下划线的HTML写法是这样:<li><a href="http://www.baidu.com/" target="_blank">百度一下</a>
没下划线的HTML写法是这样:<li><a style="text-decoration: none;" href="http://www.baidu.com/" target="_blank">百度一下</a>
在HTML标签中添加 style="text-decoration: none;" 即可
有下划线的HTML写法是这样:<li><a href="http://www.baidu.com/" target="_blank">百度一下</a>
没下划线的HTML写法是这样:<li><a style="text-decoration: none;" href="http://www.baidu.com/" target="_blank">百度一下</a>