Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我喜欢改变CSS。例如,在议程日视图中的列日名称不应被格式化为粗体。我可以通过格式化环绕的 div 来更改字体大小。但是如何更改特殊单元格的格式?
但我没有找到正确的 css 条目。有人可以帮忙吗?
谢谢
看起来您只需要覆盖<th>元素的样式。看起来 fullcalendar 没有应用任何自定义样式。
<th>
这个CSS应该工作:
th { font-weight: normal; }