書式
font-weight:数値またはキーワード
対象
全ての要素
継承
する
初期値
normal
バージョン
CSS Level 1
対応ブラウザ
Win/Mac IE5.0以降, NN6.0以降, Firefox, Opera 6, Safari
解説
文字の太さを指定します。100〜900まで100間隔で指定できます。また、以下のキーワードも指定できます。
設定名 | 種類 |
normal | 標準 |
bold | 太字 |
lighter | 1段階小さくする |
bolder | 1段階太くする |
サンプルコード
<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; top:10;left:10px;
font-weight:900;
}
--></style>
</head>
<body>
<div>サンプルテキストです。<br>Sample Text</div>
</body>
</html>
</html>