红丝带的含义是什么:请问在制作网页的时候怎么去掉文字的超级连接的下划线

来源:百度文库 编辑:杭州交通信息网 时间:2024/04/28 07:31:15
帮帮忙拉
紧急!!!!!!!!!!紧急

1.样式表里可以这样搞掂:
<style type="text/css">
<!--
a:link {
text-decoration: none/underline;未点击过的超连接是否显示下划线
}
a:visited {
text-decoration: none/underline;已访问过的超连接是否显示下划线
}
a:hover {
text-decoration: none/underline;鼠标经过是否显示下划线
}
a:active {
text-decoration: none/underline;活动连接是否显示下划线
}
-->
</style>

2.如果你用DW的话,就直接在“页面属性”里就可以搞掂了,方便!