均等割付の形式指定(CSS) へ 間隔・表示位置css リファレンス へ
均等割付の形式を指定する(サンプル)(CSS)
text-justify: ***; (サンプル)

 { text-justify: ***; }(均等割付の形式指定)のサンプルです。
 ※ ブラウザの幅を広げたり、縮めたりすると違いが分かります。

 ★ 使用例とブラウザでの表示 (c3-1)スタイルシートの書き方(基本)は、こちら です。
設定例 : .c3-2 p { border: 1px blue solid; margin: 2px 0px; padding: 1px 4px; text-align: justify; }
.c3-2exam1 { text-justify: auto; }   .c3-2exam2 { text-justify: distribute; }
.c3-2exam3 { text-justify: distribute-all-lines; }  .c3-2exam4 { text-justify: inter-word; }
.c3-2exam5 { text-justify: inter-cluster; }   .c3-2exam6 { text-justify: inter-ideograph; }
.c3-2exam7 { text-justify: newspaper; }   .c3-2exam8 { text-justify: kashida; }
使 用 例   ブラウザの表示
<div class=c3-2>
<p class=c3-2exam1>1.auto<br>
 日本語と英語の表示例です。7時から8時の間においで下さい。<br>
 This is an example of the display in Japanese and English. Please come home between seven and eight.
<p class=c3-2exam2>2.distribute<br>
 日本語と英語の表示例です。7時から8時の間においで下さい。<br>
 This is an example of the display in Japanese and English. Please come home between seven and eight.</p>
<p class=c3-2exam3>3.distribute-all-lines<br>
 日本語と英語の表示例です。7時から8時の間においで下さい。<br>
 This is an example of the display in Japanese and English. Please come home between seven and eight.></p>
<p class=c3-2exam4>4.inter-word<br>
 日本語と英語の表示例です。7時から8時の間においで下さい。<br>
 This is an example of the display in Japanese and English. Please come home between seven and eight.</p>
<p class=c3-2exam5>5.inter-cluster<br>
 日本語と英語の表示例です。7時から8時の間においで下さい。<br>
 This is an example of the display in Japanese and English. Please come home between seven and eight.</p>
<p class=c3-2exam6>6.inter-ideograph<br>
 日本語と英語の表示例です。7時から8時の間においで下さい。<br>
 This is an example of the display in Japanese and English. Please come home between seven and eight.</p>
<p class=c3-2exam7>7.newspaper<br>
 日本語と英語の表示例です。7時から8時の間においで下さい。<br>
 This is an example of the display in Japanese and English. Please come home between seven and eight.</p>
<p class=c3-2exam8>8.kashida<br>
 日本語と英語の表示例です。7時から8時の間においで下さい。<br>
 This is an example of the display in Japanese and English. Please come home between seven and eight.</p>
</div>

1.auto
 日本語と英語の表示例です。7時から8時の間においで下さい。
 This is an example of the display in Japanese and English. Please come home between seven and eight.

2.distribute
 日本語と英語の表示例です。7時から8時の間においで下さい。
 This is an example of the display in Japanese and English. Please come home between seven and eight.

3.distribute-all-lines
 日本語と英語の表示例です。7時から8時の間においで下さい。
 This is an example of the display in Japanese and English. Please come home between seven and eight.

4.inter-word
 日本語と英語の表示例です。7時から8時の間においで下さい。
 This is an example of the display in Japanese and English. Please come home between seven and eight.

5.inter-cluster
 日本語と英語の表示例です。7時から8時の間においで下さい。
 This is an example of the display in Japanese and English. Please come home between seven and eight.

6.inter-ideograph
 日本語と英語の表示例です。7時から8時の間においで下さい。
 This is an example of the display in Japanese and English. Please come home between seven and eight.

7.newspaper
 日本語と英語の表示例です。7時から8時の間においで下さい。
 This is an example of the display in Japanese and English. Please come home between seven and eight.

8.kashida
 日本語と英語の表示例です。7時から8時の間においで下さい。
 This is an example of the display in Japanese and English. Please come home between seven and eight.

このプロパティは、Internet Exp.の独自拡張機能です。
※ ブラウザの幅を広げたり、縮めたりすると違いが分かります。
margin:2px 0px;padding:1px 4px; は、余白の指定です。

均等割付の形式を指定(CSS) へ 間隔・表示位置css リファレンス へ