请问dreamweaver2004中取消链接下划线的选项在哪?

来源:百度知道 编辑:UC知道 时间:2024/05/28 03:55:56
是一个下拉菜单选项,昨天还在用,今天却找不到了。我在css和页面设置里都找不到。有谁知道可以跟我说一下具体位置么?谢谢

A:用CSS来实现:
<style type="text/css">
<!--
a:link { text-decoration: none}
a:visited { text-decoration: none}
a:hover { text-decoration: none}
-->
</style>
其中a:link 表示一般的链接样式;a:visited 表示已访问过的链接样式;a:hover 表示鼠标经过时的链接样式。text-decoration: none 表示无下划线,text-decoration: underline 表示有下划线。

如果三种链接状态的样式相同,也可以简化为:
<style type="text/css">
<!--
a { text-decoration: none}
-->
</style>