Full Calendar CSS - displaying events outside the calendar canvas

守給你的承諾、 提交于 2020-01-06 19:36:42

问题


If you take a look at fullCalendar website, we are presented with a calendar.

If I attempt to drag the calendar's event, the events are always hidden behind the canvas' edges

Is there any way I can modify the CSS, so the events are popped up outside of the canvas?

The calendar can be found here: http://arshaw.com/fullcalendar/

Thanks in advance!


回答1:


Add this to your CSS file:

div.fc-view.fc-view-month.fc-grid {
  overflow: visible;
}


来源:https://stackoverflow.com/questions/12765935/full-calendar-css-displaying-events-outside-the-calendar-canvas

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!