运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
前往 Spaces
<!DOCTYPE html> <html> <head> <style> p.a { word-spacing: normal; } p.b { word-spacing: 30px; } p.c { word-spacing: 1cm; } </style> </head> <body> <h1>The word-spacing Property</h1> <h2>word-spacing: normal:</h2> <p class="a">This is some text. This is some text.</p> <h2>word-spacing: 30px:</h2> <p class="b">This is some text. This is some text.</p> <h2>word-spacing: 1cm:</h2> <p class="c">This is some text. This is some text.</p> </body> </html>