别克两年免息贷款买车:消除超链接时的下划线

来源:百度文库 编辑:查人人中国名人网 时间:2024/04/30 04:06:31
在做网页的时候怎么消除难看的下划线?!谢谢各位告解!

用代码来实现,找到<head>和</head>这两句了吗?样式表语句就加在它们中间。仅仅加入<style>a{TEXT-DECORATION:none}</style>这一句就去掉超链接下划线了,如何让超链接去掉下划线,鼠标停留在上面时有下划线?
style>a{TEXT-DECORATION:none}a:hover{TEXT-DECORATION:underline}</style>就可以了

那看是什么了!

用css中定义

a{text-decoration:none;}

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312">
<style type="text/css">
<!--
body {font-size:12px;}
a:link {text-decoration: none}
a:visited {text-decoration: none}
a:hover {text-decoration: underline}
a:active {text-decoration: underline}
-->
</style>
</head>
<body>
<a href="#">超文本链接<a>
</body>
</html>