當(dāng)前位置:軟件學(xué)堂 > 資訊首頁 > 網(wǎng)絡(luò)編程 > DIV+CSS > css調(diào)整單詞間距word-spacing

css調(diào)整單詞間距word-spacing

2012/11/23 20:42:39作者:佚名來源:網(wǎng)絡(luò)

移動端

【實例介紹】

調(diào)整單詞間距word-spacing

使用單詞間隔word-spacing可以控制單詞之間的間隔距離。

【基本語法】

word-spacing:取值

【語法介紹】

取值可以使用normal,也可以使用長度值。normal指正常的間隔,是默認(rèn)選項;長度是設(shè)置單詞間隔的數(shù)值及單位,可以使用負(fù)值。

【實例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無標(biāo)題文檔</title> </head> <style type="text/css"> .s { font-family: "宋體"; font-size: 18px; word-spacing: 3px; }</style> <body class="s"> Lost time is never found again. This is something which I learned very clearly   last semester. I spent so much time fooling around that my grades began to   suffer. I finally realized that something had to be done. It was time for a  change. </body> </html>

【代碼分析】

此段代碼中首先定義了df標(biāo)記中的單詞間隔word-spacing為3px,然后對正文中的段落文本應(yīng)用樣式,在瀏覽器中預(yù)覽效果,如圖所示。

調(diào)整單詞間距word—spacing運行效果
 【素材及源碼下載】

請點擊:調(diào)整單詞間距word—spacing 下載本實例相關(guān)素材及源碼

 

標(biāo)簽: css  調(diào)整  單詞間距