CSS word-spacing 属性

指定段字之间的空间,应该是30像素:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <style>
    p {
      word-spacing: 30px;
    }
  </style>
</head>
<body>

  <p>
    This is some text. This is some text.
  </p>

</body>
</html>

尝试一下 »


属性定义及使用说明

word-spacing属性增加或减少字与字之间的空白。

注意: 负值是允许的。

默认值: normal
继承: yes
版本: CSS1
JavaScript 语法: object.style.wordSpacing="10px"

浏览器支持

表格中的数字表示支持该属性的第一个浏览器版本号。

属性
word-spacing 1.0 6.0 1.0 1.0 3.5

属性值

描述
normal 默认。定义单词间的标准空间。
length 定义单词间的固定空间。
inherit 规定应该从父元素继承 word-spacing 属性的值。

相关文章

CSS 教程: CSS Text