リンク文字の下線(アンダーライン)を点線にする

動作ブラウザ 【 IE:4.0  NN:6.0】 ■CSSバージョン【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 { text-decoration:none;
border-bottom:1px black dotted;
}
説  明 リンク文字の下線(アンダーライン)を点線にするには、既存の下線を消してボーダーの下線を設定します。点線はdottedまたはdashedを指定します。
サンプル <html>
<head>
<title>リンク文字の下線(アンダーライン)を点線にする</title>
<style type="text/css"><!--
a { text-decoration:none;
border-bottom:1px black dotted;
}
--></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!