如何在fullcalendar中增加两个事件之间的空间

时间:2014-03-05 08:51:59

标签: fullcalendar

我希望在完整日历的月视图中增加两个事件之间的空间。

1 个答案:

答案 0 :(得分:5)

您需要在EventRender Function

中修改事件的css元素

你可以在这样的事件之间实现间距

eventRender: function (event, element, view) {

            $(element).css("margin-top", "5px");


              $(element).css("margin-bottom", "5px");

 }