掌握Tailwind CSS函数和指令
发表时间: 2023-10-12 22:05
一般都写在一个 css 文件。
@tailwind base;@tailwind components;@tailwind utilities;@layer base { h1 { @apply text-2xl; } h2 { @apply text-xl; }}@layer components { .btn-blue { @apply bg-blue-500 hover:bg-blue-700 text-white font-bold py-2 px-4 rounded; }}@layer utilities { .filter-none { filter: none; } .filter-grayscale { filter: grayscale(100%); }}
.content-area { height: calc(100vh - theme(spacing.12)); /* 或者 */ height: calc(100vh - theme(spacing[2.5])); /* 或者 */ background-color: theme(colors.blue.500); /* 或者 */ background-color: theme(colors.blue.500 / 75%);}
/* 等同于 min-width: 640px */@media screen(sm) { /* ... */}