问题
I want to increase the space between two events in month view of full calendar.
回答1:
you need to modify css element of event in EventRender Function
you can achieve spacing between events like this
eventRender: function (event, element, view) {
$(element).css("margin-top", "5px");
$(element).css("margin-bottom", "5px");
}
来源:https://stackoverflow.com/questions/22192750/how-to-increase-the-space-between-the-two-events-in-fullcalendar