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

windows - Single EXE to Install Python Standalone Executable for Easy Distribution -

c# - Access objects in UserControl from MainWindow in WPF -

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