I use this library here http://louisremi.imtqy.com/jquery.transform.js/index.html

She writes styles without a prefix, how can it be evaporated so that she writes with the prefiues?

Example

So now:

transform: scale(2); 

And you need this:

 -moz-transform: scale(2); -webkit-transform: scale(2); -o-transform: scale(2); -ms-transform: scale(2); transform: scale(2); 

Maybe there is some kind of setting?

  • why do you need prefixes? It used to be, they were badly needed, now these are already standard properties - Vasily Barbashev
  • To support older versions of browsers, aren't they needed? - Kirpich643
  • in this case, transform is something like a method, a jquery extension, and not a css property. - Jean-Claude
  • 28-31 - I saw already. And then what? - Kirpich643

0