leafo / lessphp

LESS compiler written in PHP
http://leafo.net/lessphp
Other
2.2k stars 529 forks source link

Property Interpolation error #618

Open DrDeath72 opened 8 years ago

DrDeath72 commented 8 years ago

http://lesscss.org/features/#variables-feature-properties

.vendor(@property, @value) {
    -webkit-@{property}:@value;
     -khtml-@{property}:@value;
       -moz-@{property}:@value;
        -ms-@{property}:@value;
         -o-@{property}:@value;
            @{property}:@value;
}

.bla { .vendor(border-radius, 5px); }