richthegeek / phpsass

A compiler for SASS/SCSS written in PHP, brought up to date (approx 3.2) from a fork of PHamlP: http://code.google.com/p/phamlp/
http://phpsass.com/
382 stars 83 forks source link

imposible to use slash in style #83

Closed yukulele closed 6 years ago

yukulele commented 11 years ago

php sass aways interprete / char as divide operator

p {
  font: 12px / 10px;
}

SASS reference workaround don't seem to work :

p {
  $font-size: 12px;
  $line-height: 30px;
  font: #{$font-size}/#{$line-height};
}