Tailwind
要点
响应式变体
- 
移动优先,未加前缀的功能类在所有的屏幕上都生效
- 
而加了前缀的功能类(如
md:uppercase)仅在指定断点及以上的屏幕上生效。 - 
要为移动设备设计样式,就需要使用无前缀的功能类,而不是带
sm:前缀的版本 - 
因此,通常最好先为移动设备设计布局,接着在
sm屏幕上进行更改,然后是md屏幕,以此类推 
 - 
 - 
Tailwind 的断点仅包括
min-width而没有max-width- 这意味着在较小的断点上添加的任何功能类都将应用在更大的断点上。
 
 
状态变体
默认变体参考:https://www.tailwindcss.cn/docs/hover-focus-and-other-states#-4
dark 变体
dark 变体可以与响应式变体和状态变体结合使用:
<button class="lg:dark:hover:bg-white ...">
  <!-- ... -->
</button>
为了使其正常工作,必须把响应式变体要在最前面,然后是 dark 变体,最后是状态变体。
默认情况下,dark variance 只对 backgroundColor、borderColor、gradientColorStops、placeholderColor 和 textColor 启用。
其他
在 HTML 中使用类
如果您只想对 html 或者 body 元素应用某种全局样式,只需将现有类添加到 HTML 中的那些元素,而不是编写新的 CSS :
<!doctype html>
<html lang="en" class="text-gray-900 leading-tight">
  <!-- ... -->
  <body class="min-h-screen bg-gray-100">
    <!-- ... -->
  </body>
</html>
使用 @apply 抽取组件类
<button class="btn-indigo">
  Click me
</button>
<style>
  .btn-indigo {
    @apply py-2 px-4 bg-indigo-500 text-white font-semibold rounded-lg shadow-md hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-indigo-400 focus:ring-opacity-75;
  }
</style>
为了避免意外的特定性问题,我们建议您使用 @layer components { ... } 指令包装您的自定义组件样式,以告诉 Tailwind 这些样式属于哪一层
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
  .btn-blue {
    @apply py-2 px-4 bg-blue-500 text-white font-semibold rounded-lg shadow-md hover:bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-400 focus:ring-opacity-75;
  }
}
@layer components {
  @variants responsive, hover {
    .btn-blue {
      @apply py-2 px-4 bg-blue-500 ...;
    }
  }
}
Tailwind 会将这些样式自动移到与 @tailwind components 相同的位置,因此您不必担心在源文件中正确放置顺序。
添加新的功能类
使用 CSS
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
  .scroll-snap-none {
    scroll-snap-type: none;
  }
  .scroll-snap-x {
    scroll-snap-type: x;
  }
  .scroll-snap-y {
    scroll-snap-type: y;
  }
}
通过使用 @layer 指令, Tailwind 将自动把这些样式移动到 @tailwind utilities 相同的位置,以避免出现意外的未知问题。
附带响应式变体
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
  @variants responsive {
    .scroll-snap-none {
      scroll-snap-type: none;
    }
    .scroll-snap-x {
      scroll-snap-type: x;
    }
    .scroll-snap-y {
      scroll-snap-type: y;
    }
  }
}
附带深色模式变体
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
  @variants dark {
    .filter-none {
      filter: none;
    }
    .filter-grayscale {
      filter: grayscale(100%);
    }
  }
}
附带状态变体
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer utilities {
  @variants hover, focus {
    .filter-none {
      filter: none;
    }
    .filter-grayscale {
      filter: grayscale(100%);
    }
  }
}
状态变体的生成顺序与您在 @variants 指令中列出的顺序相同,因此,如果您希望一个变体优先于另一个变体,请确保这个变体最后被列出
Preflight
- 默认的外边距 (margin) 已移除
 - 默认启用 
box-border,即为元素规定的高度或宽度将包括元素的border和padding 
常用
cheatsheet:https://nerdcave.com/tailwind-cheat-sheet
- 
排版
- overflow
- overflow-visible: 显示超出容器边界的内容
 - overflow-hidden: 隐藏超出容器边界的内容 (overflow-x-hidden, overflow-y-hidden)
 - overflow-scroll: 始终添加滚动条 (overflow-x-scroll, overflow-y-scroll)
 - overflow-auto: 如有需要,添加滚动 (overflow-x-auto, overflow-y-auto)
 
 - 边距 (p内边距,m外边距)
- p-xx, m-xx
 - px-xx, py-xx: 横向纵向
 - ml-xx, mr-xx, mt-xx, mb-xx: 左右上下
 - -m-xx 重叠
 
 - 长和宽(h 和 w)
- h-xx,w-xx
 - h-full,w-full:满长/满宽(拉伸到与父元素一致)
 - w-2/3 w-1/3 占比
 - size-xx: 同时设置长和宽
 
 - space-x-xx: 子元素边距
 
 - overflow
 - 
flex: 水平的flex布局
- flex-col: 垂直的flex布局
 - items-<start/end/center>: 子元素之间的对齐方式
 - justify-<start/end/center/between/around>: 主轴定位
 - gap-xx 间距, flex和grid通用 (gap-x-xx, gap-y-xx)
 - content-<center/start/end>: 整个主轴的子元素在父元素中的定位(flex和grid通用)
 - self-<start/end/center>: 单个子元素的对齐
 - flex-none: 应用在子元素上,充当占用空间的隐藏块
 - grow/shrink: 应用在子元素上, 控制增长/收缩
 
 - 
grid:
- grid-cols-xx/grid-rows-xx:列数/行数
 - justify-items-<start/end/center>: 在行内轴上的定位
 - justify-self-<start/end/center>: 应用在子元素中的定位
 - place-content-<start/end/center/between/around>: 子元素间对齐
 - place-items-<center/start/end>: 子元素内部对齐
 - place-self-<center/start/end>: 单个子元素的对齐
 
 - 
文字
- text-<sm/md/lg/xl/2xl>: 大小
 - font-<thin/light/normal/medium/bold>: 粗细
 - text-<left/right/center>: 文本对齐
 - text-
: 颜色  - truncate: 隐藏过长的文字
 - whitespace-nowrap: 防止文字被截断
 - underline, decoration-
, decoration-xx: 下划线, 下划线颜色, 下划线厚度  
 - 
border
- rounded-<sm/md/lg/xl/2xl>: border radius
 - border-xx: border width
 - border-
: border color  - shadow-<sm/md/lg/xl/2xl>: 阴影
 
 - 
其他
- bg-
: 背景颜色  - bg-opacity-xx: 背景不透明度
 - visible, invisible: 可视性(仍然保留)
 - hidden: 可视性(直接去除)
 - cursor-<>: 光标hover样式
 
 - bg-