I need to display an iframe when a user clicks on a link on header of page. How do I make sure the iframe is always on top of all content? CSS z-indexs don't work effectively in this case.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Set its
|
|||
|
|
|
z-index only works on positioned content. Either use position:absolute; and top/left/right to position the element or use position:relative; to leave the element where it is. Either one should enable z-index on the element. |
|||||
|
|
The issue I am having is that the position:fixed does not work in IE7. I am wrapping my iframe in a div but that goes behind other content on the page in IE7. Also I cannot modify the properties of the underlying divs. I can only change the property of the new iframe or wrap it in a div. Any other suggestions ? |
|||
|
|