CSS 参考手册
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>
运行结果:
点击运行 »