我加垂直對齊Fullcalendar天數:中間爲所有TD天的編號:垂直對齊:中間爲響應網頁
#calendar td {
vertical-align: middle !important;
}
但沒有爲響應網頁工作的第一列: 我該如何解決它?
我嘗試在%和em中添加margin-top,它在平板電腦,機器人上的工作不適用於PC瀏覽器。
UPDATE:對的jsfiddle添加代碼:http://jsfiddle.net/8ctRu/
HTML
<div id='calendar'></div>
CSS
#calendar td {
vertical-align: middle !important;
border: 1px solid #000;
}
.fc {
text-align: center !important;
}
.fc td {
padding: 0;
vertical-align: middle !important;
}
jQuery的
$('#calendar').fullCalendar({
header: {
left: 'prev',
center: 'title',
right: 'next'
},
dayClick: function(date, allDay, jsEvent, view) {
var now = new Date();
if (date.setHours(0,0,0,0) > now.setHours(0,0,0,0)){
$(this).toggleClass("blackAndWhite");
} else {
$(tempVar).css({
'background-color':'white',
'color' : '#000'
});
}
}
});
請張貼的HTML代碼。 –
添加代碼:http://jsfiddle.net/8ctRu/ – Gene
這是一個JavaScript問題。如果你看看td裏面的div,通過JS應用最小高度。這可以防止垂直對齊按照您的預期工作。 – cimmanon