css – 内置响应表的Bootstrap面板

前端之家收集整理的这篇文章主要介绍了css – 内置响应表的Bootstrap面板前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
这是一个JS Bin链接http://jsbin.com/qiziyupo/4/edit?output

响应表不会收缩以适合面板.我怎样才能解决这个问题?

编辑:我正在寻找一个解决方案,响应表将调整大小以适应面板内部,而不必使面板更大.

解决方法

.table-responsive类只是为了对移动设备做出响应……

从Bootstrap 3.1.1文档……

Create responsive tables by wrapping any .table in .table-responsive to make them scroll horizontally up to small devices (under 768px). When viewing on anything larger than 768px wide,you will not see any difference in these tables

但是您可以在没有媒体查询的情况下将类添加到css中,并在任何视口中获取功能.

但请注意,这不会缩小表格,它只给出一个水平滚动条…

下面是来自Bootstrap的.table响应类,没有媒体查询将其限制为768px及以下.

.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;
}

.table-responsive>.table { 
    margin-bottom: 0;
}

.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td {
    white-space: nowrap;
}

还有一些针对.table-bordered的CSS规则,我没有包括……

原文链接:https://www.f2er.com/css/215467.html

猜你在找的CSS相关文章