autoprefixer

Removes unnecessary prefixes based on the `browsers` option. Note that *by default*, **it will not add new prefixes** to the CSS file.

Example

Input

.box {
    -moz-border-radius: 10px;
    border-radius: 10px;
    display: flex;
}

Output

.box {
    border-radius: 10px;
    display: flex;
}