I am using an embedded font for the top navigational elements on a site
Helvetica65 and at 16px it is the perfect WIDTH but I need it to be
about 90% of it's current height.
In Photoshop, the solution is simple - adjust the vertical scaling.
Is there a way to do essentially the same thing using CSS? And if so, how well is it supported?
Here is a jsFiddle of the basic nav coding.
The
transformproperty can be used to scale text.It's for blocks, so you'll need to also add
display: inline-blockin order to use it on HTML elements like <a>, <span>, <em>, <kbd>, etc.