Is z-index in CSS is not supported by IE? I’m using the imgAreaSelect jQuery library to select some portion of an image. My code works fine in Chrome and Mozilla but it’s not working in IE.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For positioned elements IE6 and IE7 do not support z-index as expected. Use position:relative and z-index:1 for parent element.
http://www.quirksmode.org/bugreports/archives/2006/01/Explorer_z_index_bug.html
http://www.last-child.com/conflicting-z-index-in-ie6/