I have 2 CSS files that have redundant CSS properties set between them.
For example, in foo.css:
#test {
border: 0;
font-size: 16px;
}
in bar.css:
#test {
border: 0;
font-size: 32px;
width: auto;
}
With this I want to remove border: 0;from bar.css.
I expected that I would find the answer to this question in the existing question, but for life I could not find anything. Should there be some quick tool to process 2 or more files?
source
share