Make narrow characters with CSS
css, fonts, width
Solution
You can't reduce character width, but you can reduce letter-spacing.
span {
letter-spacing: 0px;
}
Problem
How do I reduce characters' width of Arial-like fonts with CSS?
css, fonts, width
You can't reduce character width, but you can reduce letter-spacing.
span {
letter-spacing: 0px;
}
How do I reduce characters' width of Arial-like fonts with CSS?