font-size-adjust

書式

font-size-adjust:サイズ

対象

全ての要素

継承

する

初期値

none

バージョン

CSS Level 2

対応ブラウザ

-

解説

font-familyで指定された第一候補のフォントが存在しない場合に、適用されるフォントの比率を指定します。
サンプルコード
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<style type="text/css"><!--
body { margin:0px; }
.test1 { position:absolute; top:10;left:10px;
font-family:VF1J, Optima;
font-size-adjust:.58;
}
.test2 { position:absolute; top:50;left:10px;
font-family:Optima;
}
--></style>
</head>
<body>
<div class="test1">Cascading Style Sheet<br>Sample Text</div>
<div class="test2">Cascading Style Sheet<br>Sample Text</div>
</body>
</html>
実際のサンプルを実行する