add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,36 @@
# postcss
> 使用 JS 插件转换样式。
> 更多信息:<https://postcss.org>。
- 解析并转换 CSS 文件:
`postcss {{path/to/file}}`
- 解析并转换 CSS 文件并输出到特定文件:
`postcss {{path/to/file}} --output {{path/to/file}}`
- 解析并转换 CSS 文件并输出到特定目录:
`postcss {{path/to/file}} --dir {{path/to/directory}}`
- 就地解析并转换 CSS 文件:
`postcss {{path/to/file}} --replace`
- 指定自定义 PostCSS 解析器:
`postcss {{path/to/file}} --parser {{parser}}`
- 指定自定义 PostCSS 语法:
`postcss {{path/to/file}} --syntax {{syntax}}`
- 监视 CSS 文件的更改:
`postcss {{path/to/file}} --watch`
- 显示帮助:
`postcss --help`