FullCalendar如何调整标题的单元格高度?

时间:2018-04-03 18:16:05

标签: jquery fullcalendar

我需要调整fullCalendar标头的单元格高度。目前本月顶部和下方的空白区域(填充?)太多。这是它目前的样子。 enter image description here

我希望它显示更像这样

enter image description here

实际上这两个图像看起来非常相似。我想我只是不希望在月份文本的上方或下方有任何空格。如果可以的话请帮忙。感谢

1 个答案:

答案 0 :(得分:1)

您可以在实例化::

中的FullCalendar之后尝试使用此jQuery行
$(".fc-toolbar").css({"margin-bottom":0});

或通过CSS规则(可能是最好的方式):

.fc-toolbar{
  margin-bottom:0 !important;
}