V
V
Vlad Golubev2013-12-24 01:50:00
css
Vlad Golubev, 2013-12-24 01:50:00

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;
}

What is an online CSS optimization tool to remove a:hoverduplicates from color: black;?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
O
okoketka, 2014-01-05
@okoketka

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.

G
GreatRash, 2013-12-24
@GreatRash

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.

@
@xrated, 2013-12-29
_

devilo.us ?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question