When I embed a Google map into a web page and view it in Safari 5 on Mac all fonts before the map widget are ok, but fonts after seem to loose antialiasing and look ugly. Does anybody bumped into such thing? H开发者_如何学Goow can one fix this?
Try applying
.map{
-webkit-transform:none;
z-index:10;
}
to the google map div/frame
Had the same issue. The elements you're applying cufon on cannot be position:absolute; It's also a Safari 5 OSX specific bug.
精彩评论