I'm writing a font declaration with short-hand syntax, and I'm using SASS. I'd like to escape the '/' character to avoid SASS makes the divition operation.

$fontSize: 14px;
$lineHeight: 16px;
$fontName: Arial;

body
{
    font: $fontSize/$lineHeight $fontName;
}

This gets compiled to:

font: 0.875 Arial;

What I want to get is something like:

font: 14px/16px Arial;

Any ideas?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

font: #{$fontSize}/#{$lineHeight} $fontName should do it.

link|improve this answer
It worked! I didn't know Interpolation would be useful this way. Tks – alonso.torres Aug 10 '11 at 20:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.