FullCalendar上个月的容器造型



我尝试为上个月的FullCalendar设计样式,以填充背景颜色,我样式的日期,由CSS负责人,但这仅能工作。我使用Chrome Inspect查看HTML标签,并在CSS中更改样式,它不会显示出来,请提供帮助。谢谢!

//这是html标签//

<td class="fc-day fc-widget-content fc-mon fc-other-month fc-past" 
data-date="2017-10-30"></td>

//我的CSS//

.fc-day .fc-widget-content .fc-other-month .fc-past {
background: orange !important;}

谢谢大家。

得到了它。您正在使用此CSS:

.fc-day .fc-widget-content .fc-other-month .fc-past {}

...但是,这意味着 .fc-past 内部 .fc-other-month 内部 .fc-widget-content 内部 .fc-day

但是,由于您的HTML在一个元素上具有所有这些类,因此您需要一个选择"匹配 all> all 这些"的选择器:

.fc-day.fc-widget-content.fc-other-month.fc-past {}

但实际上,您可以选择其中一个。过度特异性永远不是一件好事。

相关内容

  • 没有找到相关文章

最新更新