ページ全体の行送りを文字サイズに対して150%にする

動作ブラウザ 【 IE:3.0  NN:4.0  Safari:1.0】 ■CSSバージョン【1】
Internet Explorer Netscape Navigator iCab Safari
3.0x 4.0x 4.5 5.0x 5.5 6.0 2.0x 3.0x 4.0x 4.x 6.0 7.0 2.x 1.x
Windows - × × × - -
Macintosh × - - × × ×
UNIX - - - - - - × × × - -

ポイント body { line-height: 150%; }
説  明 ページ全体の行間を指定するにはbodyに「line-height:行間」のように指定します。行間はpt,px,%などで指定することができます。
サンプル <html>
<head>
<title>ページ全体の行送りを文字サイズに対して150%にする</title>
<style type="text/css"><!--
body { line-height: 150%; }
--></style>
</head>
<body>
ページ全体の改行幅が<br>
文字サイズに対して150%に<br>
なります。
</body>
</html>
補足説明 なし

■サンプルを実行する >>実行
■各ブラウザでの動作結果を見る >>View!