CSS Minimizer?

compression, css, html, optimization

Solution

Will this do? It beautifies, minifies, merges, and simplifies rules where possible, and is highly configurable.

Problem

Do you know of an online CSS compressor that helps remove redudant/ineffecient CSS declarations and replaces it with more optimized CSS? Meaning, I know that a lot of "compressors" exist that simply remove tabs, remove comments, etc. But what I'm looking for is something smart enough to know that: ``` border-top: 1px solid red; border-bottom: 1px solid red; border-right: 1px solid red; border-left: 1px solid red; ``` is the same as the more efficient: ``` border: 1px solid red; ``` UPDATE: The CSS I'm trying to optimize is at the link below http://tinyurl.com/yhy5ln

Original source

Related problems