Twitter bootstrap scrollable modal

前端 未结 10 1161
日久生厌
日久生厌 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:42

    Try and override bootstrap's:

     .modal {
    position: fixed;
    

    With:

    .modal {
    position: absolute;
    

    It worked for me.

提交回复
热议问题