HTML:水平滚动条没有出现

时间:2012-11-05 10:19:17

标签: html

我需要在表格中加入一个滚动条窗格,我为此使用了div标签,如下所示

<table border="2" width="100%"><th></th><th></th><th></th></table

<div><div width="100%" style="overflow:scroll;height:100px;scrollbar-face-color: #fff;   
scrollbar-track-color: #eee;position:fixed;height:300px;">

<table border="2" width="100%"><td></td><td></td><td></td></table></div>

只有Verticle sroll bar出现,但不是bottom或horizo​​ntall sroll bar,请提出一些答案。我做错了什么?

1 个答案:

答案 0 :(得分:1)

您没有为滚动指定宽度,要显示滚动,您需要为垂直滚动指定高度,为水平滚动指定宽度。

<div width="100%" style="overflow:scroll;scrollbar-face-color: #fff;scrollbar-track-color: #eee;position:fixed;height:300px;width:200px;">

作为旁注,您已在内联样式中提到了两次高度。

Demo