Make a font more condensed with CSS

css, fonts

Solution

You are looking for `letter-spacing`

#id { letter-spacing: -1px; }

Reference

Problem

Is there anyway to make letters closer together using CSS? I know we can adjust line-height but I didn't know if there is anything that squeeze a font closer together.

Original source

Related problems