Reputation: 10529
Is it possible to calculate with absolute-size values (small
, medium
, large
, ...) in SASS or CSS calc()
.
For example:
span {
font-size: large * 1.5;
}
Upvotes: 0
Views: 61
Reputation: 2191
It's not possible. Absolute font size values cannot be calculated. This is a comprehensive article.
Upvotes: 1