本文介绍了完整日历CSS - 在日历画布外显示事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果我们看看fullCalendar网站,我们会看到一个日历。
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
我可以通过任何方式修改CSS,这样事件就会弹出画布外部?
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/
在此先感谢!
推荐答案
添加到您的CSS文件中:
Add this to your CSS file:
div.fc-view.fc-view-month.fc-grid {
overflow: visible;
}
这篇关于完整日历CSS - 在日历画布外显示事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!