最近在工做項目中接觸到Web界面設計的問題,要實現文字兩端對齊的效果。在網上搜索了一下,差很少都是用的都是相似的技巧:ide
text-align:justify;
text-justify:inter-ideograph;
後來,終於在StackOverflow上找到解決方法了。spa
樣式:設計
div.justify { text-align: justify; width:200px; font-size:15px; color:red; border:1px solid blue; height:18px;} div.justify > span { display: inline-block /* Opera */; padding-left: 100%; }
HTML:code
<div class="justify">hello, text justify.</div><br/> <div class="justify"> hello, text justify.<span></span></div><br/> <div class="justify">中 文 兩 端 對 齊</div><br/> <div class="justify">中 文 兩 端 對 齊<span></span></div>
效果圖:blog
從效果圖能夠看到,除了要在塊級元素加text-align:justify樣式外,還須要在裏面加一個空的span元素,並應用樣式。另外,對於中文還必須用空格隔開漢字,不然也沒有兩端對齊的效果。英文每一個單詞都有空格隔開,因此沒問題。class