CSS Z-index issue position fixed and Ajax

purrtonteboa

New Member
I'm still trying to use the z-index CSS property with position fixed and I have some issues.\[code\]<div id = "container"> <span id="title">Title</span> <div id = 'myDiv'></div></div>\[/code\]And the CSS:\[code\]#container{ position:fixed; z-index:10;}#myDiv{ z-index:1;}\[/code\]http://jsfiddle.net/WFs4F/My second div, filled with Ajax, is still above the container div!Thanks.
 
Back
Top