Skip to content Skip to sidebar Skip to footer

Basic Css Features Not Working In Ie8

I am completely at a loss here. I'm developing a website that needs to support a large group of users who are using IE8. Everything works in IE9 and above, as well as Chrome, Fire

Solution 1:

IE8 doesn't support rem as a unit. Use em or px instead.

http://caniuse.com/rem

Alternatively you could do something like:

#loginName{
    height:1.6em; // Or another valueheight:1.6rem;
}

to provide a IE8 fallback.

Post a Comment for "Basic Css Features Not Working In Ie8"