Google map not filling modal popup

前端 未结 5 525
心在旅途
心在旅途 2021-01-14 10:46

I\'m using a modal popup when users click the map on this page here, which brings up a larger map with directions.

The map isn\'t filling the entire space however an

5条回答
  •  北荒
    北荒 (楼主)
    2021-01-14 11:35

    Try to use this

    padding: 0;

    Css:

    .modal-body {
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
    position: relative;
         }
    

提交回复
热议问题