Friday 15 February 2013

html - Is there a way to change the different dimensions (x,y) of font-size? -



html - Is there a way to change the different dimensions (x,y) of font-size? -

div { font-size:1.2em; }

this looks changes both xy coordinates of font. there way can independently modify x , y coordinates of font?

for example:

div { font-size-y:1.6em; font-size-x:1.2em; }

(this create font taller)

possible, or no?

there not font-size-x or font-size-y styling rules. there transforms size, scale , location. accomplish want.

class="snippet-code-css lang-css prettyprint-override">div { -ms-transform: scale(1.0, 2.0); /* ie 9 */ -webkit-transform: scale(1.0, 2.0); /* chrome, safari, opera */ transform: scale(1.0, 2.0); } class="snippet-code-html lang-html prettyprint-override"><div> hello world </div>

html css

No comments:

Post a Comment