3. Browser Support

         

          Some browsers may not support the standard syntax of the transform property. To be able to increase compatibility of the property with other browsers, you may add additional syntax for this property, as shown in the example below.


div { -webkit-transform: translate(50px,100px); -ms-transform: translate(50px,100px); -mos-transform: translate(50px,100px); -o-transform: translate(50px,100px); transform: translate(50px,100px); }

          The prefix –webkit- is used for lower version of Chrome, Opera, and Safari. From version 9.0 of Internet Explorer going down, the prefix –ms- is used. In Mozilla and Opera, its lower versions may need to have the prefix –moz- and –o-, respectively (CSS Transform Property, n.d.).