html - Google map above every divs -
i'm using google map api website, notice map goes above elements of page, popup divs "position:absolute". have tried change css position attribute no success. how can solve issue?
the css attribute z-index sets position of non-statically positioned element on z axis.
try adding div's style:
div { position: absolute; z-index: 9999999; }
Comments
Post a Comment