这也行不通。做这个的最好方式是什么?我宁愿不做两个单独的表然后隐藏其中一个。
我尝试过的代码目前无效:
<table> <thead> <th>Show All the time</th> <th >HIDe in XS and SM</th> </thead> <tbody> <tr> <td>Show All the time</td> <td >HIDe in XS and SM</td> </tr> </tbody></table>解决方法 代码应该可以正常工作。 bootstrap支持使用其响应实用程序类 https://github.com/twbs/bootstrap/blob/master/less/mixins.less#L504隐藏/显示th和td:
// Responsive utilitIEs// -------------------------// More easily include all the states for responsive-utilitIEs.less..responsive-visibility() { display: block !important; tr& { display: table-row !important; } th&,td& { display: table-cell !important; }}.responsive-invisibility() { display: none !important; tr& { display: none !important; } th&,td& { display: none !important; }}
该代码适用于此Jsfiddle:http://jsfiddle.net/A4fQP/
总结以上是内存溢出为你收集整理的html – 使用Bootstrap 3如何隐藏表格中的列?全部内容,希望文章能够帮你解决html – 使用Bootstrap 3如何隐藏表格中的列?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)