04 July 2013 13:30
CSS - A Couple of Use Cases for Calc() | CSS-Tricks
calc() is a native CSS way to do simple math right in CSS as a replacement for any length value (or pretty much any number value). It has four simple math operators: add (+), subtract (-), multiply (*), and divide (/). Being able to do math in code is nice and a welcome addition to a language that is fairly number heavy.
But is it useful? I've strained my brain in the past trying to think of obviously useful cases. There definitely are some though.
1
(1 marks)