PostCSS 插件
UnoCSS 的 PostCSS 插件。支持 @apply
、@screen
和 theme()
指令。
警告
此包目前处于实验阶段。它不遵循语义化版本控制,并且可能在补丁版本中引入重大更改。
安装
bash
pnpm add -D unocss @unocss/postcss
bash
yarn add -D unocss @unocss/postcss
bash
npm install -D unocss @unocss/postcss
ts
import UnoCSS from '@unocss/postcss'
export default {
plugins: [
UnoCSS(),
],
}
ts
import { defineConfig, presetUno } from 'unocss'
export default defineConfig({
content: {
filesystem: [
'**/*.{html,js,ts,jsx,tsx,vue,svelte,astro}',
],
},
presets: [
presetUno(),
],
})
css
@unocss;
使用
@unocss
@unocss
at-rule 是一个占位符。它将被生成的 CSS 替换。
您也可以分别注入每个层级
css
@unocss preflights;
@unocss default;
/*
Fallback layer. It's always recommended to include.
Only unused layers will be injected here.
*/
@unocss;
如果您希望无论之前是否已包含,都包含所有层级,则可以使用 @unocss all
。这在您想将生成的 CSS 包含在多个文件中时很有用。
css
@unocss all;
@apply
css
.custom-div {
@apply text-center my-0 font-medium;
}
将被转换为
css
.custom-div {
margin-top: 0rem;
margin-bottom: 0rem;
text-align: center;
font-weight: 500;
}
@screen
@screen
指令允许您创建媒体查询,这些媒体查询通过名称引用您的断点,这些断点来自 theme.breakpoints
。
css
.grid {
@apply grid grid-cols-2;
}
@screen xs {
.grid {
@apply grid-cols-1;
}
}
@screen sm {
.grid {
@apply grid-cols-3;
}
}
/* ... */
...
将被转换为
css
.grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 320px) {
.grid {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
}
@media (min-width: 640px) {
.grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
/* ... */
断点变体支持
@screen
也支持 lt
、at
变体
@screen lt
css
.grid {
@apply grid grid-cols-2;
}
@screen lt-xs {
.grid {
@apply grid-cols-1;
}
}
@screen lt-sm {
.grid {
@apply grid-cols-3;
}
}
/* ... */
将被转换为
css
.grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 319.9px) {
.grid {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
}
@media (max-width: 639.9px) {
.grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
/* ... */
@screen at
css
.grid {
@apply grid grid-cols-2;
}
@screen at-xs {
.grid {
@apply grid-cols-1;
}
}
@screen at-xl {
.grid {
@apply grid-cols-3;
}
}
@screen at-xxl {
.grid {
@apply grid-cols-4;
}
}
/* ... */
将被转换为
css
.grid {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 320px) and (max-width: 639.9px) {
.grid {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
}
@media (min-width: 1280px) and (max-width: 1535.9px) {
.grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
}
@media (min-width: 1536px) {
.grid {
grid-template-columns: repeat(4, minmax(0, 1fr));
}
}
/* ... */
theme()
使用 theme()
函数使用点表示法访问您的主题配置值。
css
.btn-blue {
background-color: theme('colors.blue.500');
}
将被编译为
css
.btn-blue {
background-color: #3b82f6;
}