Store CSS font-size/line-height in Sass variable
Posted
by aeby
on Stack Overflow
See other posts from Stack Overflow
or by aeby
Published on 2010-05-18T21:20:18Z
Indexed on
2010/05/24
1:30 UTC
Read the original article
Hit count: 418
Is there a way to store the font-size/line-height in a Sass variable like this:
$font-normal: 14px/21px;
Using this declaration I get a division as described in the documentation. Is there a way to avoid the division?
Note: I use the scss syntax.
© Stack Overflow or respective owner