views:

193

answers:

1

I have a absolute positioned element with proper top and left. On page load the element doesn't show up but whenever I apply any css from IE Dev Toolbar it shows. Can anyone please help me finding a solution for it. Note: I already tried giving relative position to its parent.

+1  A: 

Make sure parent div has position:relative; applied - it solves the issue in 90% of cases. It would help a lot if you put simplified HTML of your problem.

rochal