这里的例子:
http://jsbin.com/lonopu/edit?html,css,js,output
我将日历作为侧边栏设置为宽度:260px,在完整日历中将高度设置为480px以避免滚动。如何在不滚动的情况下使日历具有更方形的外观?我只想降低行高,但是
.fc-row .fc-week .fc-widget-content { height: 20px }
不起作用,我想这是因为日历高度是在运行时动态设置的。
你能试试这个:
eventAfterAllRender: function(){
$('.fc-week.fc-widget-content.fc-rigid').attr('style', 'min-height: 3em');
}
而不是:
eventAfterAllRender: function(){
$('.fc-row').css('min-height','10px');
$('.fc-week, .fc-widget-content, .fc-rigid').attr('style','height: 10px');
},