In a textbox is it possible to increase the space between character using CSS?
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
Please login first to submit.