Answer the question
In order to leave comments, you need to log in
What is an online tool to remove duplicate CSS properties?
There is, for example, a piece of code:
a {
color: black;
text-decoration: none;
}
a:hover {
background: #fc0;
color: black;
}
a:hover
duplicates from color: black;
?
Answer the question
In order to leave comments, you need to log in
See Remove unused CSS . This online tool shows, after checking your site, all your css files, makes a recommendation and points you to styles not used on your site.
Try this . According to the description, it should do just that.
This tool takes a CSS stylesheet on input and produces an almost equivalent stylesheet on output, but with rulesets split, combined, and reordered to "factor out" common declarations.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question