
I have a HTML page where i have div to show help as shown in image above at bottom.
I also have combo box (select input) which is comming on top of this help div in IE 6.
For other browser and and IE6+ versions, it is working fine.
Is there any CSS hack for this issue for IE 6?
This is a very famous and old bug with IE6. What you need to do is to have an
iframebefore thediv. This bug is quite well documented. It happens because in IE6selectboxes were ActiveX controls and were meant to be above all the elements of the page.iframeis also an ActiveX control and can be set above theselectbox. You can read up about the hack on this website http://www.javascriptjunkie.com/?p=5.I am pretty sure a similar question has been asked around on SO as well but I couldn’t find it.