tom
tom

Reputation: 10529

Calculate font-size with absolute-size

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

Answers (1)

Alessandro_Russo
Alessandro_Russo

Reputation: 2191

It's not possible. Absolute font size values cannot be calculated. This is a comprehensive article.

Upvotes: 1

Related Questions