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; } }
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
Post a Comment