I'm working with a friend on a project with a huge CSS file. There is a lot of duplication like:
h1 {
color : black;
}
h1 {
color : blue;
width: 30px;
}
The first h1 can be removed, because it will never be used, because fully rewrited by the second. (because it is in the same CSS file)
I would know if it exists a tool that factorizes (and compress) this kind of stuff. To only have at the end:
h1 {color:blue;width:30px}
PS: If it can be an online tool, it will be perfect!