Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

element's z-index value can not overcome the iframe content's one

Tags:

css

z-index

I have a div and an iframe on the page the div has

z-index: 0;

the iframe has its content with a popup having a z-index of 1000

z-index: 1000;

However, the div still overshadows the popup in IE (but works fine in Firefox).

Does anyone know what I can do?

like image 546
Josh Mein Avatar asked Jan 24 '23 02:01

Josh Mein


1 Answers

Explorer Z-index bug

In general, http://www.quirksmode.org/ is an excellent reference for this sort of thing.

like image 175
moonshadow Avatar answered Feb 13 '23 03:02

moonshadow