I am wondering if it\'s possible to change the height of inline text, without stretching the font, and without changing the line height in css.
An issue comes up whe
You can increase height of font using below css
transform:scale(2,3); /* W3C */ -webkit-transform:scale(2,3); /* Safari and Chrome */ -moz-transform:scale(2,3); /* Firefox */ -ms-transform:scale(2,3); /* IE 9 */ -o-transform:scale(2,3); /* Opera */
JSFIDDLE