我正在尝试使用固定的列大小制作 FullCalendar 的资源日 View ( https://github.com/jarnokurlin/fullcalendar )。
我已经尝试过使列具有相同的宽度:

.ui-widget-header
{
width:150px !important;
}

还有这个:
.fc th {
width:150px !important;
}

但列保持大小根据列内容的大小。

我在日历中添加了水平和垂直滚动条,这可能是问题吗?

我也试过这个:Fixed Column Widths in Resource FullCalendar 但这对我不起作用。

谢谢

达尼

最佳答案

我自己解决了这个问题:
我不得不将固定的表格布局直接添加到表格 fc-border-separate 不仅是表格

table.fc-border-separate { table-layout: fixed; }

然后用:
table.fc-border-separate, table.fc-border-separate.fc td, .fc th {
width: 91px !important;
height: 50px !important;
}

列的大小和高度是固定的。

添加显示:块没有改变任何东西,但感谢您的回答。

关于css - FullCalendar 的固定列大小,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18527062/

10-16 14:44