gpt4 book ai didi

html - 如何使大表响应

转载 作者:太空宇宙 更新时间:2023-11-04 01:32:33 25 4
gpt4 key购买 nike

我的表格在桌面上显示良好,但一旦我尝试查看移动版本,我的表格最终对于移动设备屏幕来说太宽了。我正在使用响应式布局。 如何设置此表以在移动设备中正常显示这是我的代码

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<div class="row clearfix">
<div class="col-xs-12">
<div class="card">
<div class="body">
<div class="table-responsive">
<table id="myTable" class="table table-bordered table-striped table-hover js-basic-example dataTable">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</table>

</div>
</div>
</div>
</div>
</div>

最佳答案

另一个选项可能是通过添加 overflow-x:auto; 启用表格的水平滚动;到父 div 的样式表。

div.table-responsive {
overflow-x:auto;
}

关于html - 如何使大表响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46816272/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com