I'm trying to use CSS calc
function to calculate size with different units on my web page.
I have some element height expressed in em
. I want to add some pixels to it.
calc(3em + 10px)
Surprisingly the result CSS produced by LESS is calc(13em)
. Why?