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
http://www.css3.com/css-font-stretch/
This command will help you to solve problem
This will help you!
You can increase the height, width of a text using transform property. For instance: transform: scale(0.7, 1.0);
**h1 {
font-size: 60px;
transform: scale(0.7, 1.0);
margin-left: -90px
}**
I used margin to align the text's
Note: Its always a best practice to use Vendor Prefixes
Example: -webkit-transform: scale(0.7, 1.0);