在表中添加滚动到除第一列之外的所有列

时间:2013-11-29 09:31:36

标签: jquery css html5

我的屏幕上有一张包含许多列的表格。

一列是员工姓名,其他列是时间列表。我想把scrollll-bar放到时间列表中。员工姓名不应滚动。

enter image description here

CSS ::

.fc-view {
 width: 100%; /* needed for view switching (when view is absolute) */
 overflow-x:scroll;
 overflow
  }

HTML ::

<div class="well" id="cal"><div id='calendar' class="fc"></div>
</div>-y:hidden;

此类包含表&gt;。

2 个答案:

答案 0 :(得分:0)

在你的CSS中

#employee-names { overflow: hidden; }

#times-list { overflow: scroll; }

你必须为你使用的div定位正确的ID#。但这应该可以解决问题。

答案 1 :(得分:0)

Pranay Rana的伎俩做了工作

<div style="overflow-x : scroll">