I would like to have a font with all characters the same width in html div.
For example, a W is wider than an i in most fonts ...Is there any font that has all characters equally wide?
You are looking for a monospace font...
Here are some examples: https://fonts.google.com/?category=Monospace
You could to separate the character with an individual class and then you can use transform: scale(x, y); to alter the characters width and height. 
.text {
    text-align: center;
    letter-spacing:2px;
    text-transform: full-width;
    -webkit-transform:scale(15.0,1.0);
    -moz-transform:scale(15.0, 1.0);
    -ms-transform:scale(15.0, 1.0);
    -o-transform:scale(15.0, 1.0);
    transform:scale(15.0,1.0);
}
<div class="text">tc</div>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With