admin管理员组文章数量:1345436
In the content, I put a div with a table inside. I need it to scroll horizontally. I've spent hours researching and trying some solutions.
<div style="width:100%; overflow: scroll;">
<table style="width:2000px;">
<tr>
<td>very large width table with scroll horizontal</td>
<td>x</td>
<td>x</td>
<td>x</td>
</tr>
</table>
</div>
In the content, I put a div with a table inside. I need it to scroll horizontally. I've spent hours researching and trying some solutions.
<div style="width:100%; overflow: scroll;">
<table style="width:2000px;">
<tr>
<td>very large width table with scroll horizontal</td>
<td>x</td>
<td>x</td>
<td>x</td>
</tr>
</table>
</div>
Share
Improve this question
edited Jun 14, 2015 at 15:38
j08691
208k32 gold badges269 silver badges280 bronze badges
asked Jun 14, 2015 at 5:55
Marco CostaMarco Costa
371 gold badge2 silver badges9 bronze badges
3
- You just want to be able to scroll horizontally when the table is wide, ride? Because your code already does that for me. Or am I misunderstanding your question? – SamuelMS Commented Jun 14, 2015 at 5:58
- It seems to work for me -- jsfiddle/0k9a2h10 -- what problem are you having? If on OS X, know that the default behavior is to not show scrollbars. So you won't see them unless you toggle that setting or add fake scrollbars. With a touchpad, the JSFiddle I linked to scrolls horizontally. – Cymen Commented Jun 14, 2015 at 5:58
- does not work here, what could be wrong? – Marco Costa Commented Jun 14, 2015 at 15:30
2 Answers
Reset to default 6Since you are using bootstrap,instead of using styles use the inbuilt classes.
<div class="table table-responsive">
<table > //give width styling as you want.
<tr>
<td>very large width table with scroll horizontal</td>
<td>x</td>
<td>x</td>
<td>x</td>
</tr>
</table>
</div>
This will give you a horizontal scrollbar.
at first.you should add class name 'table-responsive' to the div element which is the container element of the table.
<div class="table-responsive">
<table class="table table-bordered table-hover table-condensed small">
/* table content here */
</table>
</div>
second. if you want the effect that all content in the table display only on one line without soft wrap.you should add css style to your style sheet with content as below:
th,td{
/*use this property to disbale soft wrap*/
white-space: nowrap;
/*To make extra certain,add this css property*/
word-break: keep-all;
}
本文标签: javascriptBootstrap table in div horizontal scroll not workStack Overflow
版权声明:本文标题:javascript - Bootstrap table in div horizontal scroll not work - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743743493a2531327.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论