Text Justify on IE
by KELVIN LEE
HTML
<p>這是有關中英文出現於同一段落,左右對齊(Jusifty)在Win8的IE 及其他的瀏覽器的的分別。</p>
<p>Standard CSS: text-algin: justify</p>
<p class="auto">這是有關中英文出現於同一段落,左右對齊( auto )在Win8的IE 及其他的瀏覽器的的分別。</p>
<p class="distribute">這是有關中英文出現於同一段落,左右對齊( distribute )在Win8的IE 及其他的瀏覽器的的分別。</p>
<p class="distribute-all-lines">這是有關中英文出現於同一段落,左右對齊( distribute all lines )在Win8的IE 及其他的瀏覽器的的分別。</p>
<p class="inter-cluster">這是有關中英文出現於同一段落,左右對齊 ( inter-cluster )在Win8的IE 及其他的瀏覽器的的分別。</p>
<p class="inter-ideograph">這是有關中英文出現於同一段落,左右對齊( inter ideograph )在Win8的IE 及其他的瀏覽器的的分別。</p>
<p class="inter-word">這是有關中英文出現於同一段落,左右對齊( inter word )在Win8的IE 及其他的瀏覽器的的分別。</p>
<p class="kashida">這是有關中英文出現於同一段落,左右對齊( kashida )在Win8的IE 及其他的瀏覽器的的分別。</p>
<p class="newspaper">這是有關中英文出現於同一段落,左右對齊( newspaper )在Win8的IE 及其他的瀏覽器的的分別。</p>
CSS
p { text-align: justify; }
.auto { -ms-text-justify: auto;}
.distribute { -ms-text-justify: distribute;}
.distribute-all-lines { -ms-text-justify: distribute-all-lines;}
.distribute-center-last { -ms-text-justify: distribute-center-last;}
.inter-cluster { -ms-text-justify: inter-cluster;}
.inter-ideograph { -ms-text-justify: inter-ideograph;}
.inter-word { -ms-text-justify: inter-word;}
.kashida { -ms-text-justify: kashida; }
.newspaper { -ms-text-justify: newspaper; }