1. 程式人生 > >Bootstrap模態框新增滾動條(一級)

Bootstrap模態框新增滾動條(一級)

/*不使用頁面的滾動條*/
/*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">