mattbasta / crass

A CSS minifier and utility library for JavaScript
http://mattbasta.com/crass
MIT License
102 stars 6 forks source link

shorter value #75

Open da0ka opened 4 years ago

da0ka commented 4 years ago

min-width:initial -> min-width:0 background-position:top left -> background-position:0 0 background-position:bottom right -> background-position:100% 100% nth-child(1) -> first-child nth-of-type(1) -> first-of-type nth-of-type(even) -> nth-of-type(2n) nth-child(even) -> nth-child(2n) nth-of-type(2n+1) -> nth-of-type(odd) nth-of-type(2n-1) -> nth-of-type(odd) nth-child(2n+1) -> nth-child(odd) nth-child(2n-1) -> nth-child(odd)