<table class="col-lg-6 table table-bordered table-hover table-condensed table-responsive" id="tab">我已经将col lg-6包含到table.Even中,尽管该表显示的是全屏长度
https://jsfiddle.net/DTcHh/11436/
检查一下上面的小提琴
发布于 2015-08-26 15:52:25
你应该先弄清楚你的屏幕尺寸。像这样:
> 1170px screen size> 970px to < 1170px screen size> 750px到< 970px屏幕尺寸< 750px屏幕尺寸根据这个,你可以应用像col-lg,col-md,col-sm,col-xs这样的类
发布于 2015-08-26 17:03:47
我已经使用了div,在..I之间写了表格代码,并包含了col 6到div.It的工作。
发布于 2015-08-26 20:15:15
总是使用类名'table- responsive ',它会对你的响应性有很大帮助。
<div class='table-responsive'>
<table class="table table-bordered table-hover table-condensed table-responsive col-lg-6" id="tab">
</div>https://stackoverflow.com/questions/32220444
复制相似问题