xem / miniMinifier

HTML/CSS/JS minifiers in 128+ bytes
103 stars 8 forks source link

First of type #14

Open tomhodgins opened 7 years ago

tomhodgins commented 7 years ago
p:nth-of-type(1) {
  color: blue;
}

correct minification

p:first-of-type{color:blue}

CSSnano output

p:nth-of-type(1){color:blue}

I wonder what other :nth-of-type-like things can be optimized for size!