CSS TEXT-JUSTIFY
Properti khusus IE ini menawarkan penyempurnaan pada nilai "justify" yang digunakan di text-align
properti. Memang, nilai "justify" harus ditetapkan untuk properti itu text-justify
agar memiliki efek apa pun.
text-justify
menawarkan tingkat kontrol pembenaran yang baik atas konten yang terlampir, memungkinkan berbagai model justifikasi canggih yang digunakan dalam sistem penulisan bahasa yang berbeda.
Contoh
<p style="text-align: justify; text-justify: newspaper;">
This is “Newspaper” justified content
</p>
Nilai yang Mungkin
VALUE DESCRIPTION
---------------------- ---------------------------------------------------------------------
auto The browser will determine the appropriate justification algorithm
to use
distribute Justification is handled similarly to the “newspaper” value,
but this version is optimized for East Asian content
(especially the Thai language.)
In this justification method, the last line is not justified.
distribute-all-lines Behavior and intent for this value is the same as with the
“distribute” value, but the last line is also justified.
inter-cluster Justifies content that does not have any inter-word spacing
(such as with many East Asian languages.)
inter-ideograph Used for justifying blocks of ideographic content.
Justification is achieved by increasing or decreasing spacing
between ideographic characters and words as well.
inter-word Justification is achieved by increasing the spacing between words.
It is the quickest method of justification and does not justify
the last line of a content block.
newspaper Spacing between letters and words are increased or decreased
as necessary.
Referensi IE mengatakan "itu adalah bentuk pembenaran yang paling canggih untuk huruf Latin."
Sumber: http://www.css3.com/css-text-justify/
Semoga ini membantu!