layout-grid

書式

layout-grid:layout-grid-typeの値 layout-grid-lineの値 layout-grid-charの値 layout-grid-modeの値

対象

全ての要素

継承

-

初期値

各プロパティの値

バージョン

-

対応ブラウザ

Win IE5.0以降

解説

グリッドの設定を一括して行います。
サンプルコード
<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;
layout-grid:fixed 20pt 20px both;
}
--></style>
</head>
<body>
<div>サンプルテキストです。<br>
グリッドに沿って表示されます。20pt×20ptになっています。</div>
</body>
</html>
実際のサンプルを実行する