Token导航 LogoToken导航TokenDH.com
开发规范需要联网github未标认证来源可访问许可证需确认审计通过

tailwindcss-best-practicesTailwind CSS 最佳实践

Agent Skill

用于辅助前端页面、组件、样式和交互逻辑的开发与维护。它适合让 Agent 生成或审查 React、Next.js、Vue、Tailwind、CSS 等相关代码,整理组件结构,或定位布局和性能问题。使用时需要结合项目现有设计系统、路由和构建方式,避免只生成孤立片段;涉及页面改动时,应配合本地预览和构建检查确认视觉效果。

总安装

396

周安装

17

GitHub Stars

2

下载量

139
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tailwindcss-best-practices(Tailwind CSS 最佳实践)
来源仓库:https://github.com/biggora/claude-plugins-registry
仓库路径:skills/tailwindcss-best-practices
安装命令:
npx skills add https://github.com/biggora/claude-plugins-registry --skill tailwindcss-best-practices
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/biggora/claude-plugins-registry --skill tailwindcss-best-practices

简介

提供 Tailwind CSS 开发的标准化实践指南。

  • 涵盖类名组织、性能优化与团队协作规范。
  • 适用于企业级前端项目,提升代码可维护性。
  • 应作为团队知识库的一部分,而非仅依赖 AI 生成。
  • tailwindcss-best-practices 属于开发规范类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Tailwind CSS v4.x Best Practices

Covers Tailwind CSS v4.0 through v4.2.2 (latest stable as of March 2026). Always check the official docs at https://tailwindcss.com/docs for the latest.

Tailwind CSS is a utility-first CSS framework. Instead of writing custom CSS, you compose designs using utility classes directly in your markup. Tailwind v4 introduced CSS-first configuration with @theme variables, @utility for custom utilities, and @custom-variant for custom variants — replacing the old tailwind.config.js approach entirely.

Critical v4 Migration Gotchas

These are the most common mistakes when working with Tailwind v4. If you're migrating from v3 or using v4 for the first time, read the upgrade guide — but here are the top trip-ups:

v3 (old)v4 (correct)Why it changed
!bg-red-500bg-red-500!Important modifier moved from prefix to suffix
bg-opacity-75bg-red-500/75Opacity modifiers removed; use slash syntax on the color
shadowshadow-smShadow scale shifted down one step
shadow-smshadow-xsShadow scale shifted down one step
roundedrounded-smBorder radius scale shifted down one step
rounded-smrounded-xsBorder radius scale shifted down one step
ringring-3Default ring width changed from 3px to 1px
outline-noneoutline-hiddenRenamed for clarity
flex-shrink-0shrink-0Shorter alias is now the only form
flex-growgrowShorter alias is now the only form
overflow-ellipsistext-ellipsisRenamed for consistency
blurblur-smBlur scale shifted down one step
@tailwind base/components/utilities@import "tailwindcss"Single CSS import replaces three directives
tailwind.config.js@theme {} in CSSCSS-first configuration replaces JS config
darkMode: 'class'@custom-variant dark (&:where(.dark,.dark *));Dark mode config moves to CSS
bg-[--var]bg-(--var)CSS variable arbitrary values use parentheses
theme(screens.xl)theme(--breakpoint-xl)Theme function uses CSS variable names
@layer utilities {}@utility name {}Custom utilities use dedicated directive
start-* / end-*inset-s-* / inset-e-*Deprecated in v4.2

Core References

TopicDescriptionReference
InstallationVite, PostCSS, Webpack, CLI, and CDN setupcore-installation
Utility ClassesUnderstanding Tailwind's utility-first approachcore-utility-classes
Theme VariablesDesign tokens, @theme directive, theme variable namespacescore-theme
Responsive DesignMobile-first breakpoints, responsive variants, container queriescore-responsive
VariantsConditional styling with state, pseudo-class, media query, and pointer variantscore-variants
PreflightTailwind's base styles and how to extend or disable themcore-preflight
Source DetectionHow Tailwind detects classes, @source, @source not, @source inline()core-source-detection

Layout

Display & Flexbox & Grid

TopicDescriptionReference
Displayflex, grid, block, inline, hidden, sr-only, flow-root, contentslayout-display
Flexboxflex-direction, justify, items, gap, grow, shrink, wrap, orderlayout-flexbox
Gridgrid-cols, grid-rows, gap, place-items, col-span, row-span, subgridlayout-grid
Aspect RatioControlling element aspect ratio for responsive medialayout-aspect-ratio
ColumnsMulti-column layout for magazine-style or masonry layoutslayout-columns

Positioning

TopicDescriptionReference
PositionControlling element positioning with static, relative, absolute, fixed, and stickylayout-position
InsetPlacement of positioned elements with inset, logical inset (inset-s-*, inset-bs-*), and deprecated start-*/end-*layout-inset

Sizing

TopicDescriptionReference
WidthSetting element width with spacing scale, fractions, container sizes, viewport unitslayout-width
HeightSetting element height with spacing scale, fractions, viewport unitslayout-height
Min & Max Sizingmin-width, max-width, min-height, max-height constraintslayout-min-max-sizing
Logical SizingWriting-mode-aware sizing: inline-*, block-*, min-inline-*, max-block-* (v4.2)layout-logical-properties

Spacing

TopicDescriptionReference
MarginMargins with spacing scale, negative values, logical properties (mbs-*, mbe-*)layout-margin
PaddingPadding with spacing scale, logical properties (pbs-*, pbe-*)layout-padding

Overflow

TopicDescriptionReference
OverflowControlling how elements handle content that overflowslayout-overflow

Images & Replaced Elements

TopicDescriptionReference
Object Fit & PositionControlling how images and video are resized and positionedlayout-object-fit-position

Tables

TopicDescriptionReference
Table Layoutborder-collapse, table-auto, table-fixedlayout-tables

Transforms

TopicDescriptionReference
Transform BaseBase transform utilities, hardware acceleration, custom transform valuestransform-base
TranslateTranslating elements on x, y, z axes with spacing scale and percentagestransform-translate
RotateRotating elements in 2D and 3D spacetransform-rotate
ScaleScaling elements uniformly or on specific axestransform-scale
SkewSkewing elements on x and y axestransform-skew

Typography

TopicDescriptionReference
Font & TextFont size, weight, color, line-height, letter-spacing, decoration, truncate, wrap-break-word, wrap-anywheretypography-font-text
Text AlignControlling text alignment with left, center, right, justifytypography-text-align
List Stylelist-style-type, list-style-position for bullets and markerstypography-list-style

Visual

TopicDescriptionReference
BackgroundBackground color, gradient, image, size, positionvisual-background
BorderBorder width, color, radius, divide, ring, block border utilities (border-bs-*, border-be-*)visual-border
EffectsBox shadow, opacity, mix-blend, backdrop-blur, filter, colored drop shadowsvisual-effects
SVGfill, stroke, stroke-width for SVG and icon stylingvisual-svg
Text ShadowText shadow sizes, colors, and opacity modifiers (v4.1)effects-text-shadow
MaskComposable mask utilities with gradient and radial masks (v4.1)effects-mask

Effects & Interactivity

TopicDescriptionReference
Transition & AnimationCSS transitions, animation keyframes, reduced motioneffects-transition-animation
Visibility & InteractivityVisibility, cursor, pointer-events, user-select, z-indexeffects-visibility-interactivity
Form Controlsaccent-color, appearance, caret-color, resizeeffects-form-controls
Scroll Snapscroll-snap-type, scroll-snap-align for carouselseffects-scroll-snap

Features

Dark Mode

TopicDescriptionReference
Dark ModeDark mode with dark: variant, @custom-variant, class and data-attribute strategiesfeatures-dark-mode

Migration

TopicDescriptionReference
Upgrade GuideMigrating from v3 to v4, all renamed/removed utilities, scale shifts, config migrationfeatures-upgrade

Customization

TopicDescriptionReference
Custom StylesAdding custom styles, utilities with @utility, variants with @custom-variant, arbitrary valuesfeatures-custom-styles
Functions & DirectivesTailwind's CSS directives (@theme, @utility, @custom-variant, @source) and functionsfeatures-functions-directives
Content DetectionHow Tailwind detects classes, @source configuration, safelisting with @source inline()features-content-detection

Best Practices

TopicDescriptionReference
Utility PatternsManaging duplication, conflicts, important modifier, when to use componentsbest-practices-utility-patterns

Key Recommendations

  • Use utility classes directly in markup — compose designs by combining utilities
  • Customize with @theme directive — define design tokens as CSS variables, not in JS config
  • Mobile-first responsive design — unprefixed utilities for mobile, prefixed for breakpoints
  • Use complete class names — never construct classes dynamically with string interpolation
  • Leverage variants — stack variants for complex conditional styling (dark:md:hover:bg-blue-600)
  • Prefer CSS-first configuration — use @theme, @utility, and @custom-variant over JavaScript configs
  • Use oklch for custom colors — Tailwind v4 defaults to oklch; prefer it for perceptual uniformity
  • Use rem for custom breakpoints — e.g., --breakpoint-3xl: 90rem not 1440px
  • Know the scale shifts — shadow, rounded, and blur all shifted down one step in v4
  • Use @custom-variant (not @variant) — for defining custom variants like class-based dark mode

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.06%
按下载量换算50

Claude

27.51%
按下载量换算38

Cursor

20.3%
按下载量换算28

Gemini CLI

8.68%
按下载量换算12

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills