執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 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>