JSP中如何去掉超链接的下划线

如题所述

第1个回答  推荐于2017-09-21
“页面属性”——“链接”——“下划线样式”——“始终无下划线”
完整CSS
<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>
第2个回答  2011-09-07
建个css文件,a{text-decoration:none;}
第3个回答  2011-09-07
a的超链接样式 text-decoration:none;
第4个回答  2011-09-07
例如:<a href="" style="text-decoration:none">超链接</a>就可以了追问

改变颜色呢

追答

在style中加color:red

本回答被提问者采纳
相似回答