アウトライン(フォーカス時の枠)を消す

動作ブラウザ 【 IE:5.0  NN:6.0  Safari:1.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.0x 4.x 6.0 7.0 2.x 1.x
Windows × × - × × × × × × - -
Macintosh × × × - - × × × × × ×
UNIX - - - - - - × × × × - -

ポイント .fcs { outline:0px none black; }
説  明 アウトライン(フォーカス時の枠)を消すにはoutlineプロパティで「outline:0px none black;」のように指定します。
サンプル <html>
<head>
<title>アウトライン(フォーカス時の枠)を消す</title>
<style type="text/css"><!--
.fcs { outline:0px none black; }
--></style>
</head>
<body>
<form>
<input type="input" class="fcs">
<input type="input">
</form>
</body>
</html>
補足説明 Windows版のIE5.x、MacOSX版のSafariではoutlineは効果ありません。

■サンプルを実行する >>実行
■各ブラウザでの動作結果を見る >>View!