html - CSS Transition not working in Firebug -


i updating online showcase today , of sudden noticed link transition stopped working.

my website is: https://michielelshout.nl/

as can see in default.css on line 3, there's code transition. when check file in firebug, transition isn't there. when force !important.

in admin works fine. i've been scratching head on whole day now. appreciated. thanks.

edit* css code:

a {color:#ffc107;text-decoration:none;-moz-transition:all .3s ease 0;-ms-    transition:all .3s ease 0;-o-transition:all .3s ease 0;-webkit-transition:all .3s ease 0;transition:all .3s ease 0} 

you can effect removing last 0 after "ease" css. current shorthand not valid.

https://developer.mozilla.org/de/docs/web/css/transition


Comments