マウスがリンク文字上に乗ったら下線(アンダーライン)を表示する |
Internet Explorer | Netscape Navigator | iCab | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
3.0x | 4.0x | 4.5 | 5.0x | 5.5 | 6.0 | 2.0x | 3.0x | 4.x | 6.0 | 2.x | |
Windows | × | ○ | - | ○ | ○ | ○ | × | × | × | ○ | - |
Macintosh | × | ○ | ○ | ○ | - | - | × | × | × | ○ | × |
UNIX | - | - | - | - | - | - | × | × | × | ○ | - |
ポイント | a:hover { text-decoration:underline; } |
---|---|
説 明 | マウスがリンク文字上に乗ったら下線(アンダーライン)を表示するには:hover擬似プロパティとtext-decorationプロパティを使います。スタイルの定義部分でa:hover { text-decoration:underline; }のようにします。また、最初に下線を表示しないようにa { text-decoration:none; }も定義しておきます。 |
サンプル | <html> <head> <title>マウスがリンク文字上に乗ったら下線(アンダーライン)を表示する</title> <style type="text/css"><!-- a { text-decoration:none; } a:hover { text-decoration:underline; } --></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">OpenSpace</a><br> </body> </html> |
補足説明 | なし |
■サンプルを実行する >>実行 ■各ブラウザでの動作結果を見る >>View! |