IE doesnt accept font as initial using important

css, internet-explorer

Solution

The CSS3 `initial` keyword isn't supported in any version of IE.

Problem

In chrome, it is ok to use `font: initial !important;`. But in IE(9), it's not getting inital value. How can I solve this?

Original source