css - Google Map v3 Initializing with horizontal gray line w/ Foundation in Chrome -


seems css related because initializing map in simple html page works fine. have added suggested css fix known issues (below), can't seem rid of this.

#map {     *, *:before, *:after {         -moz-box-sizing: content-box!important;         -webkit-box-sizing: content-box!important;         box-sizing: content-box!important;     }     img {         max-width: none;         height: auto;     }     label {         width: auto;         display: inline;     } } 

enter image description here

for else looking temp solution bug:

css

.map *, .map *:before, .map *:after {     -webkit-transform: none !important;  } 

sass

.map {   *, *:before, *:after {         -webkit-transform: none!important;   }   } 

Comments

Popular posts from this blog

javascript - How to name a jQuery function to make a browser's back button work? -

collision detection - C++ library for mesh to mesh intersection: what is available? -

python - Django-easy-pdf: xhtml2pdf reporting reportlab 2.2+ is required, but 3.0 installed -