Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS word-spacing property</title> <style> p { font-family: sans-serif; font-size: 18px; padding: 10px; } p.one { word-spacing: normal; } p.two { word-spacing: 30px; } p.three { word-spacing: 2cm; } </style> </head> <body> <p class="one">This text is represent word spacing</p> <p class="two">This text is represent word spacing</p> <p class="three">This text is represent word spacing</p> </body> </html>
  Preview Arrow