xem / miniMinifier

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

calc() algebra #10

Open tomhodgins opened 7 years ago

tomhodgins commented 7 years ago
div {
  background: lime;
  width: calc((100px - 1em) + (-50px + 1em));
  height: calc((100px - 1em) + (-50px + 1em));
}

correct minification

div{background:lime;width:50px;height:50px}

CSSnano output

div{background:lime;width:calc((100px - 1em) + (-50px + 1em));height:calc((100px - 1em) + (-50px + 1em))}