When using calc, how can you add a unit?
I have tried the following:
font-size: calc(((768 / 100) * 6) / 16)rem;
font-size: calc(((768 / 100) * 6) / 16) rem;
font-size: calc(((768 / 100) * 6) / 16) + rem;
font-size: unit(calc(((768 / 100) * 6) / 16), rem);
I am using a LESS compiler, but can't find any indication on how in the LESS docs.
Edit - I have also tried removing 'calc':
font-size: ((768 / 100) * 6) / 16 rem
This outputs: font-size: 2.88 rem
How can you join 'rem' with the number?