Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚将Bootstrap从2.x 升级到 3.x,发现modal对话框(http://getbootstrap.com/javascript/#modals)不再有大型内容正文的垂直滚动条。如何设置模态体最大高度并启用滚动条?
modal
您可以使用以下方法设置高度并启用滚动条:
#myModal .modal-content { height:200px; overflow:auto; }
如果您不希望整个模式上的滚动条,请modal-body改用:
modal-body
#myModal .modal-body { height:200px; overflow:auto; }
演示:http ://bootply.com/88983