阅读(1544) (0)

Windi CSS 重要前缀

2022-12-07 13:41:03 更新

您可以为任何实用程序类添加前缀!将它们设置为!重要。当您想要覆盖特定属性的先前样式规则时,这可能非常有用。

!text-green-300
text-blue-200
!text-green-300

CSS

.text-blue-200 {
  --tw-text-opacity: 1;
  color: rgba(191, 219, 254, var(--tw-text-opacity));
}
.\!text-green-300 {
  --tw-text-opacity: 1 !important;
  color: rgba(110, 231, 183, var(--tw-text-opacity)) !important;
}