How to create a specific IE stylesheet and declare something like
* { font-weight: regular; }
It is generally not recommended to use a selector *, so try narrowing it down to where the font is used. For example, perhaps it's just the text of a paragraph: p { font-weight: regular; }or just a link: a {...;}etc. Etc.
Good luck
source
share