You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello. I want to remove duplicate declarations in my css. Some of them contain rules with and without "important".
I've tried simple example but found the following behaviour (everything is set to false in the config)
Input:
body {
padding: 5px !important;
margin: 5px;
font-size: 15px;
}
body {
padding: 10px;
}
Output:
body {
padding: 5px !important;
font-size: 15px;
padding: 10px;
}
The margin is missed.
Input:
body {
padding: 5px;
margin: 5px;
font-size: 15px;
}
body {
padding: 10px;
}
Output:
body {
margin: 5px;
font-size: 15px;
padding: 10px;
}
Everything is ok.
What's the problem? Am I doing something wrong?
The text was updated successfully, but these errors were encountered:
iiiiiiiiiix
changed the title
The line that's after one with "important" is missed
bug: the line that's after one with "important" is missed
Nov 28, 2019
Hello. I want to remove duplicate declarations in my css. Some of them contain rules with and without "important".
I've tried simple example but found the following behaviour (everything is set to false in the config)
Input:
Output:
The margin is missed.
Input:
Output:
Everything is ok.
What's the problem? Am I doing something wrong?
The text was updated successfully, but these errors were encountered: