サンプル集  >  HTML  >  リンクの下線を消す
リンクの下線を消す
2012/01/20

aタグに、text-decoration: noneを設定すると、リンクの下線を消す事ができます。

◆環境
OS Windows 7 Professional Service Pack 1
Browser Internet Explorer 8.0.7601.17514

decoration.html
1: 
2: 
3: 
4: 
5: 
6: 
7: 
8: 
9: 
<html>
<body>
・text-decoration 指定なし<br />
<a href="">link</a><br />
<br />
・text-decoration noneを指定<br />
<a href="" style="text-decoration: none;">link</a><br />
</body>
</html>

▲ PageTop  ■ Home


Copyright (C) 2012 ymlib.com