fc sun的完整日历背景图像



我在月视图中为sunday设置了背景图像,但标题中的"sunday"也设置了相同的背景,而其他标题中的日期设置正确。我看到表线程的css也有.fc sun.fc mon等,但我不知道如何从线程中删除这些类。我该如何解决这个问题?

我的日历上有这个。css:

.fc-widget-header{
background-color: #900;
}
.fc-sun {
  background-image:url('../img/myImage.png');
  background-repeat:repeat-x;
  background-repeat:repeat-y;
}

在css中添加一个元素选择器,因为day"Sunday"标头(th(和day body(td(都有fc-sun类。这个解决方案应该适合您的情况。

td.fc-sun {
  background-image:url('../img/myImage.png');
  background-repeat:repeat-x;
  background-repeat:repeat-y;
}

相关内容

  • 没有找到相关文章

最新更新