CSS letter-spacing

admin發表於2017-02-23

letter-spacing屬性可以設定字元的間距。

功能與word-spacing類似,它們的區別可以參閱letter-spacing與word-spacing的區別一章節。

特別說明:單詞(字)是由字元組成。

程式碼例項:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
.txt{
  letter-spacing:40px;
}
</style>
</head>
<body>
<div class="txt">antzone</div>
</body>
</html>

設定字元的間距為40px。

相關文章