Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

IE is not able to handle more than 4096 css rules. This limit is biting me. So I'm looking for a tool that can identify duplicate css rules and merge them. Doesn't matter much if the result is bigger in size, the point is to have less css rules.

This is not a css compressor question, but a css rules number reduction question.

share|improve this question
Most (?) compressors also reduce rules. – Cloudanger Jul 8 '10 at 9:56
there is a ruby based tool code.google.com/p/css-redundancy-checker – Redlab Jul 8 '10 at 9:58
@Cloudanger i belive css compressor tool will want to things like : p, input, span {foo: bar;} in order to reduce size, but that increases the number of rules. My priority is to reduce the number of rules. The tool should output only 1 rule per selector. – Olivvv Jul 8 '10 at 10:02
@Redlab your tool is great, but it is not doing what I have described. Your tool ditches unused css based on provided html (a bit like the dust-me extension for firefox), whilst I am looking for a tool that reduces each selector to one rule. – Olivvv Jul 8 '10 at 12:19
I found one tool that apparently does what I have described, but it is .exe based on .net : cssmerge.sourceforge.net/Objective.html#Topic3 I'd like the same stuff, java-based. – Olivvv Jul 8 '10 at 12:41
show 5 more comments

3 Answers

There is a css parser in Java. It is probably not much of an effort to create a tool which merges rules if they have the same selectors to a single one and writes it to a new css file.

http://www.w3.org/Style/CSS/SAC/

share|improve this answer
seems very interesting, we're having a look at it. – Olivvv Jul 13 '10 at 12:04

Have you tried CSSTidy?

It's able to merge rules into single statements apart from other optimizations.

share|improve this answer
I tested it. It does the job, but it also does other non-asked things. It exists in php and C++, but unfortunately not java. – Olivvv Jul 12 '10 at 12:15

GWT optimizes all the CSS rules. If you switch over to GWT then probably u wouldn't have to worry about anything.

share|improve this answer
Read the question, not just the title. – Olivvv Jul 12 '10 at 15:59

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.