So fügen Sie Bildlaufleisten zur modalen Bootstrap-Box hinzu: Öffnen Sie zuerst die entsprechende Codedatei und setzen Sie dann die Eigenschaft auf „.modal-content {overflow: auto;max-height:300px;}“.
Empfohlen: „Bootstrap-Grundlagen-Tutorial“
Bildlaufleiste zur modalen Bootstrap-Box hinzufügen (Ebene eins)
Der Code lautet wie folgt:
/*不使用页面的滚动条*/ /*css: 给模态框设置overflow-y: hidden;即为取消掉页面滚动条的使用*/ #HelpModal{margin-top: 95px;height: 300px;overflow-y: hidden;} /*添加滚动条*/ .modal-content {overflow: auto;max-height:300px;} /*html:模态框最外层设置id属性的overflow-y: hidden;,权重值高于自定义的.modal-open .modal类名设置的overflow-y: auto;*/ <div class="modal fade" id="HelpModal" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
Das obige ist der detaillierte Inhalt vonBootstrap-Modal-Box plus Bildlaufleiste. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!