我使用Bootstrap创建了一个简单的模式,以允许用户查看表内容。但是,尝试将表内容保留在模式中时遇到问题。
当我减小网站/模式的大小时,表内容将超出模式。有什么方法可以使用户滚动,以便他们可以查看其中的所有表内容?
这是我的JSFiddle代码:
<button type="button" class="btn btn-default" data-toggle="modal" data-target="#complex">Button</button>
<div class="modal fade" id="complex" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal">×</button>
<h4 class="modal-title" id="myModalLabel">Test</h4>
</div>
<div class="modal-body">
<table id="example" class="table">
<thead>
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>ID Number</th>
<th>Proband</th>
<th>Gender</th>
<th>Birth Date</th>
<th>Life Status</th>
<th>Phenotype</th>
<th>Genotype</th>
<th> </th>
</tr>
</thead>
</table>
</div>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
最佳答案
如果要在模式容器上滚动,则只能使用CSS。
在这里寻找小提琴:http://jsfiddle.net/oq0xLmz2/
.modal-body {
overflow : auto;
}