PrettyCSS
PrettyCSS copied to clipboard
Do better property checking
It doesn't make sense to have this:
div {
background-color: green;
background: url('/images/bg.jpg');
}
In the above example, background wipes out background-color. This program should issue a warning that the property will overwrite another.