css - google map infowindow cutting off text -


i have fixed size infowindow in google map application. problem text gets cut off on right side. tried various techniques, wrapping text in span container, smaller width. played text-overflow , overflow, no avail. have hack this?

enter image description here

i had inadvertently copied in "white-space: nowrap" directive in css causing problem...

 /* fix unwanted scroll bar in infowindow */           .scrollfix{     overflow: hidden;                                        /* white-space: nowrap; <--- out! */                  padding-top:3px;                                         height:300px !important;                                 width:350px !important;                                 }                                                       

Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -