1

Twitter ブートストラップの「高」モーダルを使用しています。より低い解像度でスケーリングすることは可能ですか? 低い解像度を選択すると、モーダル全体が見えなくなります。なんとしても画面に収まるようにしたい。収まらない場合は、スクロール可能にしたいと思います(実際には /max-height: 400px で発生することがあります)。最大高さを調整できるのは私だけですか?

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


.modal {
  position: fixed;
  top: 30%;
  left: 50%;
  z-index: 1050;
  width: 750px;
  margin: -250px 0 0 -280px;
  overflow: auto;
  background-color: #ffffff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  -webkit-border-radius: 6px;
     -moz-border-radius: 6px;
          border-radius: 6px;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
     -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
     -moz-background-clip: padding-box;
          background-clip: padding-box;
}
4

2 に答える 2

1

提案された解決策は機能しますが、position: absoluteを使用すると、ウィンドウのスクロールバーがそれよりも低い (つまり、上部が見えない) 場合、モーダルが表示され、スクロールバーがその上部に「ジャンプ」します。

別のオプションは、ウィンドウの高さに応じてモーダルの高さを調整することです。これを行うには、次のルールを追加するだけです。

/* Since the position of the modal is top: 10%, this rules guarantees that its
centered vertically */
div.modal.fade.in { height: 80%; }

/* This rule shows the footer at the bottom of the modal and sets its width
so it looks good */
div.modal div.modal-footer{
    position: absolute;
    width: 94%;
    bottom: 0px;
}

/* Finally, we set the bottom of the body so its above the footer 
and its top so its bellow the header of the modal */
div.modal div.modal-body{
    position: absolute;
    width: 94%;
    top: 50px;
    bottom: 60px;
}

それが役に立てば幸い

于 2013-11-03T07:45:20.487 に答える
0
.modal {
    position: absolute; 
}
于 2012-06-29T07:55:52.363 に答える