ページ全体でリンク文字の下線をなくすが1行だけ下線を表示したい |
Internet Explorer | Netscape Navigator | iCab | Safari | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
3.0x | 4.0x | 4.5 | 5.0x | 5.5 | 6.0 | 2.0x | 3.0x | 4.x | 6.0 | 7.0 | 2.x | 1.0 | 1.1 | |
Windows | × | ○ | - | ○ | ○ | ○ | × | × | ○ | ○ | ○ | - | - | - |
Macintosh | × | ○ | ○ | ○ | - | - | × | × | ○ | ○ | ○ | ○ | ○ | ○ |
UNIX | - | - | - | - | - | - | × | × | ○ | ○ | ○ | - | - | - |
ポイント | a.under { text-decoration:underline; color:green; } <a href="url" class="under">〜</a> |
---|---|
説 明 | ページ全体ではリンクの下線を消したいが、一部のリンクだけ下線を表示したり色を変更したい場合にはクラス指定を使います。クラスを定義して、それを<a>タグに適用するようにします。 |
サンプル | <html> <head> <title>ページ全体でリンク文字の下線をなくすが1行だけ下線を表示したい</title> <style type="text/css"><!-- a { text-decoration:none; color:blue; } a.under { text-decoration:underline; color:green; } --></style> </head> <body> <a href="http://www.google.com/">Google</a><br> <a href="http://www.yahoo.co.jp">Yahoo</a><br> <a href="http://www.openspc2.org" class="under">OpenSpace</a><br> </body> </html> |
補足説明 | なし |
■サンプルを実行する >>実行 ■各ブラウザでの動作結果を見る >>View! |