6.0.5 • Published 8 years ago
stylecow-plugin-prefixes v6.0.5
stylecow plugin prefixes
Stylecow plugin to add automatically all vendor prefixes needed. It uses the caniuse database to get the data about the browsers support.
You write:
.foo {
user-select: none;
hyphens: auto;
transition: background-color 2s;
}
And stylecow converts to:
.foo {
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
-moz-hyphens: auto;
-webkit-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
-moz-transition: background-color 2s;
-webkit-transition: background-color 2s;
-o-transition: background-color 2s;
transition: background-color 2s;
}
More demos in the tests folder
6.0.5
8 years ago
6.0.4
9 years ago
6.0.3
9 years ago
6.0.2
9 years ago
6.0.1
10 years ago
6.0.0
10 years ago
5.0.1
10 years ago
5.0.0
10 years ago
4.2.0
10 years ago
4.1.1
10 years ago
4.1.0
10 years ago
4.0.1
10 years ago
4.0.0
10 years ago
3.0.1
10 years ago
3.0.0
11 years ago
2.1.1
11 years ago
2.1.0
11 years ago
2.0.0
11 years ago
1.0.0
11 years ago