gpt4 book ai didi

twitter-bootstrap - 表的 Bootstrap3 响应性不起作用

转载 作者:行者123 更新时间:2023-12-03 13:43:03 26 4
gpt4 key购买 nike

<div class="table-responsive">
<table class="table">
...
</table>
</div>

此代码块不会在 Bootstrap 中生成响应表。请帮助我使用 Bootstrap 实现响应式表。
提前致谢

最佳答案

以下响应表仅适用 <768px .

<div class="table-responsive">
<table class="table">
</table>
</div>

因为 bootstrap 3有以下代码
@media (max-width: 767px) {
.table-responsive {
width: 100%;
margin-bottom: 15px;
overflow-y: hidden;
overflow-x: scroll;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid #DDD;
-webkit-overflow-scrolling: touch;
}
}

如果您想要显示的响应表 >768px , 然后你可以像这样在没有媒体查询的情况下在你的 css 中覆盖它
.table-responsive {
width: 100%;
margin-bottom: 15px;
overflow-y: hidden;
overflow-x: scroll;
-ms-overflow-style: -ms-autohiding-scrollbar;
border: 1px solid #DDD;
-webkit-overflow-scrolling: touch;
}

关于twitter-bootstrap - 表的 Bootstrap3 响应性不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18585804/

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