DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> CSS特效代碼 >> CSS文字兩端對齊
CSS文字兩端對齊
編輯:CSS特效代碼     

HTML:

<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title></title>
<style>


.justify {
border: 1px solid blue;
width: 200px;
height: 18px;
font-size: 15px;
color: red;
text-align: justify;
}

.justify span {
display: inline-block;
padding-left: 100%;
}


</style>
</head>

<body>


<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>


</body>

</html>

result:

 

總結:從效果圖可以看到,除了要在塊級元素加text-align:justify樣式外,還需要在裡面加一個空的span元素,並應用樣式。另外,對於中文還必須用空格隔開漢字,否則也沒有兩端對齊的效果。英文每個單詞都有空格隔開,所以沒問題。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved