HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> p:nth-child(2){ letter-spacing: 3px; } p:nth-child(3){ letter-spacing: 5px; } </style> </head> <body> <h1>CSS letter-spacing Property</h1> <p>CSS letter-spacing to 3px.</p> <p>CSS letter-spacing to 5px.</p> </body> </html>
OUTPUT
×

Save as Private