V
V
Vyacheslav Klimov2017-07-06 14:01:54
css
Vyacheslav Klimov, 2017-07-06 14:01:54

How to optimize CSS GULP?

Hello, friends! Tell me a plugin that can optimize CSS, and more specifically, can do the following:
there are two code snippets

@media (min-width: 414px){
  .class {
    padding-bottom: 25px;
  }
}
@media (min-width: 414px){
  .class {
    padding-top: 25px;
  }
}

must be combined to make
@media (min-width: 414px){
  .class {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
Z
zooks, 2017-07-06
@klimov67rus

For grouping media queries I use this plugin:
gulp-combine-mq

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question