We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
-ms-
If you are using an empty browserlist (or >100%) to remove existing vendor prefixes the -ms- prefix is not always removed.
>100%
The output is as expected given the following CSS:
.example { display: -webkit-box; display: -ms-flexbox; display: flex; }
which produces:
.example { display: flex; }
But let's modify the input display property from flex -> none:
flex
none
.example { display: -webkit-box; display: -ms-flexbox; display: none; }
The -ms prefix is not removed from the output as you'd expect:
-ms
.example { display: -ms-flexbox; display: none; }
The expected output is:
.example { display: none; }
The text was updated successfully, but these errors were encountered:
Removing is not our core feature. If you send a PR, I will help you and release it. But I will not have my own time for this bug.
Sorry, something went wrong.
No branches or pull requests
If you are using an empty browserlist (or
>100%
) to remove existing vendor prefixes the-ms-
prefix is not always removed.The output is as expected given the following CSS:
which produces:
But let's modify the input display property from
flex
->none
:The
-ms
prefix is not removed from the output as you'd expect:The expected output is:
The text was updated successfully, but these errors were encountered: