書式
outline-color:色またはinvert
対象
全ての要素
継承
しない
初期値
invert
バージョン
CSS Level 2
対応ブラウザ
Mac IE5.0, Firefox 1.5以降, Opera 8, Safari
解説
アウトラインの色を指定します。色またはinvertを指定できます。
サンプルコード
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<style type="text/css"><!--
body { margin:0px; }
div { position:absolute; left:10px; top:10px;width:300px;height:100px;
border:0px black none;
outline-color:red;
outline-style:solid;
outline-width:8px;
}
--></style>
</head>
<body>
<div>Sample Text</div>
</body>
</html>