CSS超链接设置下划线

超链接下划线是通过 text-decoration 属性来设置的。 以下代码将超链接设置为默认没有下划线,当鼠标放上去后出现下划线。 <style type="text/css"> a{ text-decoration:underline; } a:hover{ text-decoration:none; } </style>
CSS
我的笔记