text-justify:均等割付
均等割付:
| auto |
ブラウザに依存し、通常は均等割付にならない (デフォルト) |
| distribute-all-lines |
均等割付を行う |
文字を均等割付にする場合は、まずtext-alignプロパティで「justify」を指定したのち、text-justifyプロパティを指定します。
・ { text-align:justify; text-justify:auto; }
・ { text-align:justify; text-justify:distribute-all-lines; }
text-justify : auto
text-justify : distribute-all-lines
<STYLE type="text/css">
<!--
.case1 { text-align:justify;
text-justify:auto; }
.case2 { text-align:justify;
text-justify:distribute-all-lines; }
-->
</STYLE>
<P
class="case1">text-justify : auto</P>
<HR>
<P
class="case2">text-justify : distribute-all-lines</P>