【问题标题】:Fullcalendar remove buttons borders/shadowFullcalendar 删除按钮边框/阴影
【发布时间】:2022-01-01 19:59:30
【问题描述】:

我尝试删除 Fullcalendar Buttons 边框。

.fc-button { border: 0px !important; }

但是当我点击它时,会出现一个新的边框:

并且没有找到显示此边框的元素。

注意:点击后 DOM 似乎没有改变

【问题讨论】:

    标签: html css fullcalendar fullcalendar-5


    【解决方案1】:

    我认为它来自box-shadow 属性,由于:focus 伪类而被添加到button

    您可以尝试添加此规则:

    .fc-button {
      box-shadow: none !important;
    }
    

    【讨论】: