当我在完整日历中滚动时,如何固定左列?

时间:2018-11-28 06:40:49

标签: javascript php jquery html fullcalendar

enter image description here

嗨,我在我的网站上使用jQuery fullcalendar。我可以水平滚动,但是我需要将我的左列固定为固定时间。如何使其固定在完整日历中?

1 个答案:

答案 0 :(得分:0)

您可以固定其位置:

position: fixed

然后

top:0;
left:0;
bottom:o;`

或者您可以按自己的方式放置日历的主容器,然后在左列中执行以下操作:

position:absolute;
top:0;
bottom:0;
left:0;
width:(whatever number you want)px;