简体中文
CSS 的 letter-spacing 属性用于设置文本字符的间距表现。在渲染文本时添加到字符之间的自然间距中。letter-spacing 的正值会导致字符分布得更远,而 letter-spacing 的负值会使字符更接近。
Web | Android | iOS |
---|---|---|
4.0 | 3.9 | 4.11 |
letter-spacing: normal | <length>;
名称 | 兼容性 | 描述 |
---|---|---|
normal | 此间距是按照当前字体的正常间距确定的。和 0 不同的是,normal 会让用户代理调整文字之间空间来对齐文字。 |
平台 | 默认值 |
---|---|
uvue | 0 |
注意:W3C 默认值为:normal
Template
Script
<template>
<view style="flex-grow: 1;">
<view style="height: 250px;background-color: gray;justify-content: center;align-items: center;">
<text class="common">letter-spacing</text>
<text class="common" style="letter-spacing: 5px;">letter-spacing: 5px</text>
<text class="common" style="letter-spacing: -2px;">letter-spacing: -2px</text>
</view>
</view>
</template>
<style>
.common {
font-size: 20px;
}
</style>