网页:创建CSS样式,去掉超链接时文字的下划线(Dreamweaver 8版本)。

来源:百度知道 编辑:UC知道 时间:2024/05/17 22:10:54

“页面属性”——“链接”——“下划线样式”——“始终无下划线”

完整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>

把分数加到20的话,直接找我就行

a{
text-decoration:none;
cursor:hand;
}