How To Display One Div Over Another Div In Ie6? February 18, 2024 Post a Comment I am writting some html code which have following structure Solution 1: What do you mean by "Lower_Element is a normal drop down box"? Is it a <select> element or a <div> as in your example? If it is a <select> then you are seeing a very old bug that affects IE6 and has been asked/solved many times before, for example Z-Index problems with IE6 and html <select> element and iframe shimming or ie6 (and below) select z-index bugSolution 2: Use position: absolute and z-index attribute to position one element above anotherRelated links: http://www.htmldog.com/reference/cssproperties/position/http://www.htmldog.com/reference/cssproperties/z-index/Code<divstyle="position:absolute"> ... </div>CopyPositioning:Baca JugaInput Placeholders For Internet ExplorerCss Dashed Border Always Appears White In Ie8, Why?Ie8 Doesn't Apply Css Display Dynamically<divstyle="position:absolute; top: 100px; left: 100px"> ... </div>CopyUPD<divstyle="position:relative"><form><divid="upper_element"style="position:absolute; z-index:2">I am top level div!</div><divid="lower_element"style="position:absolute; z-index:1">I am on the bottom of life</div></form></div>Copyhttp://jsfiddle.net/vLx6X/ Share You may like these postsCss3 Drop Shadow Under Another Div, Z-index Not WorkingUnable To Get Bootstrap Tooltip To Display Above Div When Inside Scroll PaneZ-index Below Text But Above BackgroundHow To Move Svg Elements Over Html5 Video And Control Video Playback At The Same Time? Post a Comment for "How To Display One Div Over Another Div In Ie6?"