Home >Web Front-end >CSS Tutorial >Why is my CSS3 Transform Rotating Menu Items in Firefox but not Chrome or Safari?
CSS3 Transform Not Functioning:
You're attempting to rotate menu items by 10 degrees, and your CSS funktioniert in Firefox. However, replicating this effect in Chrome and Safari has proven unsuccessful.
CSS Used:
li a { -webkit-transform:rotate(10deg); -moz-transform:rotate(10deg); -o-transform:rotate(10deg); }
Potential Causes:
The above is the detailed content of Why is my CSS3 Transform Rotating Menu Items in Firefox but not Chrome or Safari?. For more information, please follow other related articles on the PHP Chinese website!