Prev Demo
CSS3
>
Word-Spacing Property
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <style> .S { word-spacing: normal; } .N { word-spacing: 10px; } .I { word-spacing: 20px; } .T { word-spacing: -10px; } </style> <h5>Paragraph with normal word spacing.</h5> <p class="S"> Mr. Sheo Narayan is a software professional since 2000. </p> <h5>Paragraph with '10px' word spacing.</h5> <p class="N"> Mr. Sheo Narayan is a software professional since 2000. </p> <h5>Paragraph with '20px' word spacing.</h5> <p class="I"> Mr. Sheo Narayan is a software professional since 2000. </p> <h5>Paragraph with '-10px' word spacing.</h5> <p class="T"> Mr. Sheo Narayan is a software professional since 2000. </p> <br /> </body> </html>
Note: We DO NOT save your trial code in our database.
Output