Good evening. I am building an application with phonegap and I have the following problem. I have a div with a background image with "position: absoluted". I would like to create a component under this div ... however it stays on top of the image.
#map_canvas {
position: absolute;
width:100px;
height:100px;
margin: 0;
padding: 0;
z-index: -1;
background-color: #6495ed;
}
<html>
<body>
<div id="map_canvas">MINHA DIV</div>
<div>TESTE</div>
</body>
</html>
I want the "TEST" to be below the map_canvas. Thanks.