What are the CSS3 prefixes that are currently still required for some properties?

0

I have added the auto-prefixer package to my code editor atom , so that I insert all the corresponding prefixes of the css3 properties automatically.

But my doubt comes because I only added the prefix -webkit- , and according to recuero until a few years ago it should be added:

  

-moz - for Firefox, -or- for Opera and -ms - for Internet Explorer (Safari and Chrome worked with > webkit ).

I do not know if the autoprefixer is limited (I am skipping the other prefixes I need), or if the other prefixes are not currently required.

I must submit a website and I do not want that if I leave only the webkit in other browsers and its different versions my animations are not seen correctly.

On this website ( auto-prefixer ), which adds the online prefixes when you insert a code, it also only adds webkit . But I want to be very sure that only with that prefix will it be enough to cover everything.

    
asked by edu 12.09.2017 в 21:15
source

1 answer

0

I had the same doubt and I think it is not necessary to add more prefixes. I tried adding another attribute to part of the box-sizing: {

 background: linear-gradient(top, #e3e3e3 10%, white);
 box-sizing: border-box

}

and it shows me this:

{

 background: -webkit-gradient(linear, left top, left bottom, color-stop(10%, #e3e3e3), to(white));

 background: -webkit-linear-gradient(top, #e3e3e3 10%, white);

 background: -o-linear-gradient(top, #e3e3e3 10%, white);

 background: linear-gradient(top, #e3e3e3 10%, white);
 -webkit-box-sizing: border-box;
         box-sizing: border-box

}

I understand that the current browsers recognize the box-sizing attribute or the webkit prefix, but in the case of Opera and the linear-gradient, it needs its prefix -o- I'm new to this, so ... do not pay much attention to me:)

    
answered by 26.09.2017 в 21:36