Loose-Info.com
Last Update 2007/01/16
TOP - CSS1(Cascading Style Sheets, level 1) - line-height

タグ内のテキストの行間を指定します。
数値、パーセント値で指定します。デフォルトはキーワードのnormalです。

(例)
<HTML> <HEAD> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE>テスト</TITLE> <STYLE type="text/css"> <!-- P.test1 {font: 12pt monospace; line-height: normal} P.test2 {font: 12pt monospace; line-height: 12pt} P.test3 {font: 12pt monospace; line-height: 10px} P.test4 {font: 12pt monospace; line-height: 3em} P.test5 {font: 12pt monospace; line-height: 50%} --> </STYLE> </HEAD> <BODY> <P class="test1">abcde あいうえお</P> <HR> <P class="test2">abcde あいうえお</P> <HR> <P class="test3">abcde あいうえお</P> <HR> <P class="test4">abcde あいうえお</P> <HR> <P class="test5">abcde あいうえお</P> <HR> </BODY> </HTML>