Skip to content

Auto adding vendor prefixes #225

Closed
Closed
@gossi

Description

@gossi

For now, I need to write a mixin for sth like border-radius, gradients, etc. and add all vendor prefixes within the mixin. Could less itself care about this?

.myclass {
    border-radius: 4px;
}

gets transformed into:

.myclass {
    -border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
}

So mixins for all the new properties coming along are handled internally and we can write cleaner, vanilla css without abusing mixins for that stuff.

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions