Twitter Bootstrap CSS affecting Google Maps

后端 未结 11 1838
情深已故
情深已故 2020-11-27 10:31

I\'m using Twitter Bootstrap, and have a Google map.

Images on the map, such as marker are being skewed by the CSS in Bootstrap.

In the Bootstrap CSS there i

11条回答
  •  情深已故
    2020-11-27 10:56

    I also had to turn box-shadow off, and because of the order of my includes, I added the !important flag.

    #mapCanvas img {
        max-width: none !important;
        box-shadow: none !important;
    }
    

提交回复
热议问题