Div that appears behind other. How to avoid that behaivor?

Posted by Casidiablo on Stack Overflow See other posts from Stack Overflow or by Casidiablo
Published on 2010-04-07T14:18:57Z Indexed on 2010/04/07 14:23 UTC
Read the original article Hit count: 268

Filed under:
|
|

Hello there...

I'm using JQuery for this. The problem is that, when I drag an object from the side bar, the DIV that I'm dragging appears behind the main area, thus it looks really bad. I took a screenshot of the problem: http://i.imgur.com/Xu4GM.png

The div I'm dragging has this CSS:

.reporte_arrastrado{ width: 150px; height: 60px; background-color: silver; background-image: url(chart.png); background-position: left center; background-repeat: no-repeat; padding: 10px 0 10px 26px; position:relative; }

And, the one that represents the main area has this CSS:

#tabs{ position:relative; }

That's it... I've read some answers here, and people always suggest to set the position property to relative. But, it does not work for me.

Thanks for reading.

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about css