Answers for "how to increase letter spacing in word html"

CSS
23

letter spacing css

div{
   letter-spacing: 2px; 
}
Posted by: Guest on March-18-2020
2

kerning css

// There is no kerning property, but you can use letter-spacing
div{
   letter-spacing: 2px; 
}
Posted by: Guest on April-01-2020

Code answers related to "how to increase letter spacing in word html"

Browse Popular Code Answers by Language