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规则,我没有包括……

相关文章

Css3如何实现鼠标移上变长特效?(图文+视频)
css3怎么实现鼠标悬停图片时缓慢变大效果?(图文+视频)
jquery如何实现点击网页回到顶部效果?(图文+视频)
css3边框阴影效果怎么做?(图文+视频)
css怎么实现圆角边框和圆形效果?(图文+视频教程)
Css3如何实现旋转移动动画特效