搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Example of CSS word spacing</title> <style> p.one { word-spacing: 20px; } p.two { width: 150px; word-spacing: 20px; text-align: justify; } p.three { word-spacing: 20px; white-space: pre; } </style> </head> <body> <p class="one">This is a normal paragraph.</p> <p class="two">请注意,即使<code> word-spacing </code>属性的值设置为20px,该段落的单词之间的空格也会变化,以使文本合理。</p> <p class="three"> This is a paragraph with preserved whitespace. </p> </body> </html>
运行结果