PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> p.a { word-spacing: normal; } p.b { word-spacing: 50px; } p.c { word-spacing: 2cm; } </style> </head> <body> <h1>word-spacing property example</h1> <h2>word-spacing: normal:</h2> <p class="a">This is some text. This is some text.</p> <h2>word-spacing: 50px:</h2> <p class="b">This is some text. This is some text.</p> <h2>word-spacing: 2cm:</h2> <p class="c">This is some text. This is some text.</p> </body> </html>