cssbeautify
cssbeautify copied to clipboard
Add space before `!important`
Should add a space between rule and !important
declaration.
STR
p{margin:1em!important}
Actual
p {
margin: 1em!important;
}
Expected
p {
margin: 1em !important;
}
yes!very!helpful
I prefer this syntax, but I think it's just a matter of preference.