通过css控制超链接不显示下划线
“页面属性”——“链接”——“下划线样式”——“始终无下划线”
1 <style type="text/css"> 2 a:link { 3 text-decoration: none; 4 } 5 a:visited { 6 text-decoration: none; 7 } 8 a:hover { 9 text-decoration: none; 10 } 11 a:active { 12 text-decoration: none; 13 } 14 </style>