- 如何使鼠标移到链接上时加上下划线?
-
发布时间:2010-11-09 14:40:18
发布时间:2010-11-09 14:40:18
在网页源代码的<head>与</head> 之间加上这段CSS代码: <style type="text/css">
<!--
a { text-decoration: none} //取消链接下划线
a:hover { text-decoration: underline} //这句代码的作用是当鼠标移到链接上时产生下划线。
-->
</style>