How this browser specific css used?
I have this:
.example {
transition: all 0.2s ease-in-out 0s ;
-moz-transition: all 0.2s ease-in-out 0s ;
-webkit-transition: all 0.2s ease-in-out 0s
}
All have same value all 0.2s ease-in-out 0s
Should i use all three of them, or just one like this?
.example {
transition: all 0.2s ease-in-out 0s ;
}
Previous value for this transition css is by default.
Is this browser specific css used if i want specific styling for certain browser only, or is it a requirement that have to be used even if the value is same?