HFIProgramming / mikutap

A Mainland China Friendly and independent version extracted from https://aidn.jp/mikutap
https://hfiprogramming.github.io/mikutap/
1.69k stars 511 forks source link

Fix a Pitfall "Prefixed CSS First" & Completely localized #16

Closed nkh0472 closed 3 years ago

nkh0472 commented 3 years ago

A pitfall "'animation' should be listed after '-webkit-animation'" by Edge Chromium 90.0.818.51 DevTools.

Affcted resource:

a:hover {
animation: animover . 2s linear ;
-webkit-animation: animover . 2s linear ;
}

After fixed:

a:hover {
-webkit-animation: animover . 2s linear ;
animation: animover . 2s linear ;
}

Ref to Prefixed CSS first | webhint documentation