我使用的 CSS 转换在 mozilla Firefox 中不起作用

The CSS transforms that I used don't work in mozilla Firefox

我的动画无法在 mozilla 中运行,但可以在 chrome 中运行。请建议一些更改,以便它在

中工作
a {
    transition: all 0.5s ease-in-out 0s;
}

a:hover {
    transform:rotate(360deg) ;
    -moz-transform:rotate(360deg);  
    -webkit-transform:rotate(360deg);
    cursor:pointer;
}

添加

display: inline-block;

你的 link 风格。

Firefox 似乎拒绝转换 内联元素

查看演示:

http://codepen.io/anon/pen/RPVVXM