我用插件全日历做了一个日历。我想改变今天约会的风格。
.fc-unthemed .fc-today {
color: #fff !important;
background-color: red;
}
但是细胞的背景颜色必须像下一个图像一样。
怎么办?感谢
答案 0 :(得分:2)
您可以应用CSS创建边框,如三角形,并在右上角显示。
.fc-day.fc-today {
position: relative;
}
.fc-day.fc-today::before,
.fc-day.fc-today::after {
content: '';
position: absolute;
top: 0;
right: 0;
border-color: transparent;
border-style: solid;
}
.fc-day.fc-today::before {
border-width: 1.5em;
}
.fc-day.fc-today::after {
border-radius: 0;
border-width: 1.5em;
border-right-color: red;
border-top-color: red;
}
输出将如下所示。