I have a div that displays a Google map.
div
How do I make another div float over the map div?
Just set the position of the div and you may have to set the z-index.
ex.
div#map-div { position: absolute; left: 10px; top: 10px; } div#cover-div { position:absolute; left:10px; top: 10px; z-index:3; }