Why is Firefox refusing to transition the element? Any suggestions for a fix?
.config:before
{
content: 'test';
font: 25px/55px serif;
-webkit-transition: .6s -webkit-transform ease-in-out;
transition: .6s transform ease-in-out;
}
.config.active:before
{
-webkit-transform: rotate(360deg);
-ms-transform: rotate(360deg);
transform: rotate(360deg);
}
<span class="config active"></span>
JSBin: http://jsbin.com/zipokubode/1/edit?html,css,output
Note: I have the latest stable version of Firefox installed, so prefixing should not be an issue.