Answers for "how to add space between characters in html"

CSS
1

html space between characters

<p style="letter-spacing: 20px;"> Text with 20px spacing </p>
<p style="letter-spacing: -4px;"> Text that is very difficult to read. </p>
Posted by: Guest on April-03-2021
0

how to add spaces between text in html

p {
  white-space: pre;
}
Posted by: Guest on December-08-2020

Code answers related to "how to add space between characters in html"

Browse Popular Code Answers by Language