Is it possible to change inline text height, not just the line-height?

前端 未结 8 1923
面向向阳花
面向向阳花 2021-01-01 10:23

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

8条回答
  •  死守一世寂寞
    2021-01-01 10:34

    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

提交回复
热议问题