我试图调整"今天","<"和">"我日历右侧的按钮。但是,尽管提供了包含我喜欢的设置的对象的header属性,但它的行为并不像我期望的那样。以下是我的代码在呈现日历时的样子
$('#calendar').fullCalendar({
events: '/api/shifts',
eventBackgroundColor: '#f2f2f2',
eventBorderColor: '#f2f2f2',
height: 400,
contentHeight: "auto",
header: {
left: '',
center: '',
right: 'today prev next'
}
});
以下是我在浏览器上查看时的样子。
如何让它正确对齐?