CSS:设置字母间距、中文汉字间距

一、 ​​letter-spacing:​​设置汉字间字间距或者英文单词中每个字母的间距

CSS:设置字母间距、中文汉字间距_html5
CSS:设置字母间距、中文汉字间距_css3_02

.box{
letter-spacing: 10px;
/* 取正值:字符之间的距离变大;取负值:字符之间的距离变小 */

}
<div class="box">
忳郁邑余侘傺兮,吾独穷困乎此时也,宁溘死以流亡兮,余不忍为此态也。
</div>

二、 ​​word-spacing:​​设置英文每个单词之间的距离,对中文文字之间的距离没有效果

CSS:设置字母间距、中文汉字间距_css_03

<style>
.box{
word-spacing: 10px;

}
</style>
</head>
<body>
<div class="box">
Dreaming in the memory is not as good as waiting for the paradise in the hell
</div>