-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
Description
If I run autoprefixer on the following code:
.test {
outline: 0; /* Random comment */
box-shadow: 0 0 8px rgba(82,168,236,.6);
}It is converted to:
.test {
outline: 0; /* Random comment */
-webkit-box-shadow: 0 0 8px rgba(82,168,236,.6); /* Random comment */
box-shadow: 0 0 8px rgba(82,168,236,.6);
}The comment from the preceding line is copied to the prefixed lines.
This happens with the default settings.
Reactions are currently unavailable