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>
2.1m questions
2.1m answers
60 comments
57.0k users