outline-width

書式

outline-width:幅

対象

全ての要素

継承

しない

初期値

medium

バージョン

CSS Level 2

対応ブラウザ

Mac IE5.0, Firefox 1.5以降, Opera 8, Safari

解説

アウトラインの幅を指定します。
サンプルコード
<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>
実際のサンプルを実行する