My client wants to use Arial on his pages, but he wants to make them flatter (smaller height with the same width). I could probably use font editor to flat开发者_Python百科ten the font and then use font-face to display it on page, but is there easier way?
There is a css-property font-stretch, but it's still not supported by any browser(has been introduced in css2).
You may use the css-property transform with the function scaleY('some value smaller than 1')
, but this will scale the whole element, not only the text inside.
So I would like to say using font-face is the best solution at this time.
精彩评论