How can I remove the space between a character in HTML? Padding doesn't work

css, fonts, html, padding

Solution

That space is part of the font. Use a negative `letter-spacing` `margin-left` on it in order to remove it.

Example

Note: this only moves the entire span a few px back. In reality, the space is still there and cannot be properly removed.

Problem

Why is there space(marked in red color) before the letter 'അ', even if I added padding as 0px? ``` <span style="margin:0;padding:0;border:1px solid blue;font-size:128px">അ</span> ```

Original source