...去掉超链接时文字的下划线(Dreamweaver 8版本)。
发布网友
发布时间:2024-10-23 23:18
我来回答
共1个回答
热心网友
时间:2024-10-27 15:01
“页面属性”——“链接”——“下划线样式”——“始终无下划线”
完整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>