We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If setting line-height to a value less than the current font-size gmail will change it to line-height:normal;
line-height:normal;
So line-height:1, line-height:1em, line-height:100% all work as expected
line-height:1
line-height:1em
line-height:100%
However line-height:0.9, line-height:0.9em, line-height:99%, will all get converted to line-height:normal;
line-height:0.9
line-height:0.9em
line-height:99%
Same works for px values. So font-size:20px; line-height:19px won't work But font-size:19px; line-height:19px will work
px
font-size:20px; line-height:19px
font-size:19px; line-height:19px
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If setting line-height to a value less than the current font-size gmail will change it to
line-height:normal;
So
line-height:1
,line-height:1em
,line-height:100%
all work as expectedHowever
line-height:0.9
,line-height:0.9em
,line-height:99%
, will all get converted toline-height:normal;
Same works for
px
values.So
font-size:20px; line-height:19px
won't workBut
font-size:19px; line-height:19px
will workThe text was updated successfully, but these errors were encountered: