letter-spacing: ***; Browser The letter-spacing property specifies the spacing between letters. p { letter-spacing: 0.5em; } Property Value Explanation letter-spacing length or normal the size of the spacing between letters Unit of length The default is "normal". Example <html> <head> <title>TAG index</title> <style type="text/css"> #example1 { letter-spacing: 0.3em; } #example2 { letter-spacing: 1em; } </style> </head> <body> <p>Welcome to my website.</p> <p id="example1">Welcome to my website.</p> <p id="example2">Welcome to my website.</p> </body> </html> Output Welcome to my website. Welcome to my website. Welcome to my website.