I’ve recently found that despite what I’ve heard in the past it’s possible to control the Kerning of net-text. How nice.
#headline {
font-family: Arial;
font-size: 28px;
letter-spacing: -1px;
}
I’ve recently found that despite what I’ve heard in the past it’s possible to control the Kerning of net-text. How nice.
#headline {
font-family: Arial;
font-size: 28px;
letter-spacing: -1px;
}
Nice one! What you’re referring to however is not kerning but letter-spacing (what it says on the tin). The only way I can imagine to do kerning with CSS would be to letter-space two individual letters or assign each letter an individual letter-spacing value. That could be a rather tedious exercise and is probably only worth the effort for headlines that use critical kerning pairs (AW, LT, IL, VA, etc.). Unless you’re an absolutely dedicated type geek of course.
Yeah I knew it was letter-spacing but enjoyed the headline too much and I thought I could get away with it, should have known better!