W
W
weranda2017-04-03 21:54:04
css
weranda, 2017-04-03 21:54:04

How to automatically prefix CSS in PhpStorm?

Greetings
Can you please tell me how to add prefixes to the rules in PhpStorm in an existing CSS file?
From:

div{
  box-sizing: border-box;
}

Do:
div{
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

Answer the question

In order to leave comments, you need to log in

2 answer(s)
I
iBird Rose, 2017-04-03
@iiiBird

Is there for PhpStorm, something like an Autoprefixer plugin (for css)?

M
McBernar, 2017-04-04
@McBernar

Try gulp. You will be surprised how much more time you can save besides using IDE plugins.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question