2013年3月29日 星期五

如何去除超連結底線?

利用html語法,去除超連結底線:

1. 單一位置去除超連結底線

加入 style="text-decoration: none"

例如:

<a style="text-decoration: none" href="http://網址">連結名稱</a>

2. 整頁去除超連結底線

將下列三行文字放在</head>之前即可

<style>
a{text-decoration:none}
</style>