首页 - 图片 - 汽车 - 百科 - 旅游 - 美食 - 英语 - IT资讯 - 留学 - 移民 - 电影 - 下载 - 站点地图

您的位置: 易飞网 >> 资讯 >> 站长学院 >> 网页特效 >> 查看资讯

给超链接加两条下划线

说明:把鼠标移上去试试吧!

效果: aaaaaaaaa

代码:

<body>

<style>
a:link {text-decoration: none;}
a:visited {text-decoration: none;}
a:active {text-decoration: none;}
a:hover {text-decoration:underline;padding-bottom:8px;border-bottom:1 solid black}
</style>
<a href="#">把鼠标移上来!</a>

</body>