I have a div that displays a Google map.
div
How do I make another div float over the map div?
Try this:
<style> #wrapper { position: relative; } #over_map { position: absolute; top: 10px; left: 10px; z-index: 99; } </style> <div id="wrapper"> <div id="google_map"> </div> <div id="over_map"> </div> </div>
1.4m articles
1.4m replys
5 comments
57.0k users