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.
我正在使用react-day-picker,在这里自定义修饰符样式被添加到月份的外部日期。
如何避免将这些样式添加到禁用的日期和当月之外的日期?
您可以使用 限制您的 CSS 选择器:not('.DayPicker-Day--outside'),例如:
:not('.DayPicker-Day--outside')
.DayPicker-Day.DayPicker-Day--thursdays:not('.DayPicker-Day--outside') { background: yellow; }