Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Example of CSS word-spacing property</title> <style> p.normal { word-spacing: normal; } p.spacing { word-spacing: 50px; } </style> </head> <body> <p class="normal">This is a normal paragraph (normal).</p> <p class="spacing">This is a paragraph with word spacing (50px).</p> </body> </html>