CSS – Internet Explorer 7 Overflow Hidden Problem

It’s Internet Explorer again.

The overflow: hidden css attribute does not work in Internet Explorer 6/7. The workaround is to set the position to relative.

.a-div {
  ...
  overflow: hidden;
  position: relative;
  ...
}

Done =)

Reference: CSS: Fixing overflow: hidden in IE

4 thoughts on “CSS – Internet Explorer 7 Overflow Hidden Problem”

Leave a reply to ykyuen Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.