段落排版--中文字间距字母间距(letter-spacing, word-spacing)

Posted Rinpe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了段落排版--中文字间距字母间距(letter-spacing, word-spacing)相关的知识,希望对你有一定的参考价值。

中文字间隔、字母间隔设置:

如果想在网页排版中设置文字间隔或者字母间隔就可以使用    letter-spacing 来实现,如下面代码:

h1{
    letter-spacing:50px;
}
...
<h1>了不起的盖茨比</h1>

注意:这个样式使用在英文单词时,是设置字母与字母之间的间距。

单词间距设置

如果我想设置英文单词之间的间距呢?可以使用 word-spacing 来实现。如下代码:

h1{
    word-spacing:50px;
}
...
<h1>welcome to here!</h1>

示例:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>字间距</title>
<style type="text/css">
    h1{letter-spacing:20px;font-size:20px;}
    p{word-spacing:20px;}
    #pp{letter-spacing:20px;
</style>
</head>
<body>
    <h1>hello world, hello rinpe !</h1>
    <hr/>
    <p>hello world, hello rinpe !</p>
    <hr/>
    <p id="pp">我的名字叫xxxxx</p>
</body>
</html>

效果:

以上是关于段落排版--中文字间距字母间距(letter-spacing, word-spacing)的主要内容,如果未能解决你的问题,请参考以下文章

office办公中文字的处理与排版

word文本框中如何调行间距

关于InDesign对英文段落做强制双齐时字母间距变大

CORELDRAW段落文本框里的文字如何设置行间距?

首行悬挂缩进2字符怎么设置

如何把keil中的代码行间距调宽