shadedecho
Programmer
So I am well aware of the long standing problem with how select-boxes cannot be covered up by standard div elements simply with z-index'ing tricks, and that this problem plagues IE6, but was fixed in IE7.
And I'm aware of the 2 main strategies for dealing with this problem:
1. iframe shim behind div, above select-box
2. hide/disable selectboxes that fall even partially within the rect bounds of your div.
However, I was just playing around and noticed that #1 doesn't work entirely, and moreover, the same problem even exhibits itself on all other major browsers too.
Basically, if you have a select box, and you click the drop-down, and open the little menu, the MENU ITSELF cannot seem to be covered up, even by an iframe shim, even though the main part of the select box IS covered up. So basically, while the select box is open, it CANNOT be completely covered up.
I'm wondering if anyone knows a workaround for this? In other words, if a user opens a select box, and I happen to have a tool tip or some other sort of floating div thing that I want to position where it might overlap the actual dropdown part, is there anyway to cover up the drop-down menu part?
And I'm aware of the 2 main strategies for dealing with this problem:
1. iframe shim behind div, above select-box
2. hide/disable selectboxes that fall even partially within the rect bounds of your div.
However, I was just playing around and noticed that #1 doesn't work entirely, and moreover, the same problem even exhibits itself on all other major browsers too.
Basically, if you have a select box, and you click the drop-down, and open the little menu, the MENU ITSELF cannot seem to be covered up, even by an iframe shim, even though the main part of the select box IS covered up. So basically, while the select box is open, it CANNOT be completely covered up.
I'm wondering if anyone knows a workaround for this? In other words, if a user opens a select box, and I happen to have a tool tip or some other sort of floating div thing that I want to position where it might overlap the actual dropdown part, is there anyway to cover up the drop-down menu part?