0

I have a menu that works fine in all browsers except for... IE8 and IE9.

When I scroll the menu it should pop out (what it does fine in all other browsers) but in IE it 'stays inside the div' so it's not overlapping.

In the example below you can see how the menu stays in the div and the searchbar below is overlapping.

PS: I've tried al sorts of things with z-index, but it wil not work...

example

Bob van Luijt
  • 7,153
  • 12
  • 58
  • 101

1 Answers1

1

Trying adding the following lines to the code.

<!DOCTYPE html>
<meta http-equiv="X-UA-Compatible" content="IE=9" />
Sriram
  • 36
  • 3
  • It makes IE understand the code and makes it browser compatible to specified version. For more details refer to this post: http://stackoverflow.com/questions/14611264/x-ua-compatible-content-ie-9-ie-8-ie-7-ie-edge – Sriram Dec 26 '13 at 14:40
  • O sorry, this was the answer. But I still don't really understand how a older browser understands a newer browser... – Bob van Luijt Jan 06 '14 at 13:22