C
C
CrewCut2015-10-07 17:29:02
css
CrewCut, 2015-10-07 17:29:02

Is there a service that adds cross-browser styles to css?

There is a style file with this element:
transform: rotate(15deg);
At the output, you need:

-moz-transform: rotate(15deg); 
-ms-transform: rotate(15deg); 
-webkit-transform: rotate(15deg);
-o-transform: rotate(15deg); 
transform: rotate(15deg);

Is there a service that automatically adds additional entries to such elements?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
Ivanq, 2015-10-07
@CrewCut

https://autoprefixer.github.io/

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question