leafo / lessphp

LESS compiler written in PHP

Home Page:http://leafo.net/lessphp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Property Interpolation error

DrDeath72 opened this issue · comments

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); }