跳至内容

遗留兼容预设

遗留兼容实用程序的集合。

此预设不包含任何规则,它对来自其他预设生成的 CSS 应用后处理。

默认情况下,所有选项均未启用,您需要显式地选择每个选项。

源代码

安装

bash
pnpm add -D @unocss/preset-legacy-compat
bash
yarn add -D @unocss/preset-legacy-compat
bash
npm install -D @unocss/preset-legacy-compat
uno.config.ts
ts
import presetLegacyCompat from '@unocss/preset-legacy-compat'
import { defineConfig } from 'unocss'

export default defineConfig({
  presets: [
    // ...other presets
    presetLegacyCompat({
      // options
      commaStyleColorFunction: true,
    }),
  ],
})

选项

commaStyleColorFunction

  • 类型: boolean
  • 默认值: false

将颜色函数 (rgb()hsl()) 从空格分隔转换为逗号分隔,以提高与遗留浏览器的兼容性。恢复 UnoCSS v0.57.0 之前的旧行为,该行为在 #3221 中更改为空格分隔,以与 Tailwind CSS 保持一致。

例如

  • rgb(255 0 0) -> rgb(255, 0, 0)
  • rgb(255 0 0 / 50%) -> rgba(255, 0, 0, 50%)
  • hsl(0 100% 50% / 50%) -> hsla(0, 100%, 50%, 50%)

根据 MIT 许可发布。