标签: html css css3
我们可以在网页上增加字体高度吗?
我尝试过尺度属性但没有得到任何完美的解决方案。
答案 0 :(得分:2)
试试这个:
p { display: inline-block; font-size: 32px; transform: scale(.5, 1); }
<p>This is text.</p>