TextBox and spaces between chars

0
0

In a textbox is it possible to increase the space between character using CSS?

  • You must to post comments
0
0

Yes, this should be possible using the letter-spacing property:
https://www.w3schools.com/cssref/pr_text_letter-spacing.php

 

Here’s what it looks like in plain HTML:

<input type=”text” style=”letter-spacing: 2px;” placeholder=”Spaced letters”>

style=”letter-spacing: 2px;” is the css that you would need

 

-Julie

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.