Twitter bootstrap scrollable modal

前端 未结 10 1163
日久生厌
日久生厌 2020-12-22 19:03

I\'m using twitter bootstrap for a project I am working on.

I have a modal window that has a somewhat longer form in it and I didn\'t like that when the window got

10条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-22 19:34

    Your modal is being hidden in firefox, and that is because of the negative margin declaration you have inside your general stylesheet:

    .modal {
        margin-top: -45%; /* remove this */
        max-height: 90%;
        overflow-y: auto;
    }
    

    Remove the negative margin and everything works just fine.

提交回复
热议问题