弹性盒 & 网格
用于控制弹性项目封装方式的工具。
¥Basic usage
¥Don’t wrap
使用 flex-nowrap
来防止 flex 项目封装,导致不灵活的项目在必要时溢出容器:
¥Use flex-nowrap
to prevent flex items from wrapping, causing inflexible items to overflow the container if necessary:
<div class="flex flex-nowrap">
<div>01</div>
<div>02</div>
<div>03</div>
</div>
¥Wrap normally
使用 flex-wrap
允许弹性项目封装:
¥Use flex-wrap
to allow flex items to wrap:
<div class="flex flex-wrap">
<div>01</div>
<div>02</div>
<div>03</div>
</div>
¥Wrap reversed
使用 flex-wrap-reverse
反向封装弹性项目:
¥Use flex-wrap-reverse
to wrap flex items in the reverse direction:
<div class="flex flex-wrap-reverse">
<div>01</div>
<div>02</div>
<div>03</div>
</div>
Tailwind 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用hover:flex-wrap-reverse
仅在 hover 时应用 flex-wrap-reverse
工具。
<div class="flex flex-wrap hover:flex-wrap-reverse">
<!-- ... -->
</div>
有关所有可用状态修饰符的完整列表,请查看悬停、聚焦、以及其他状态 文档。
你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:flex-wrap-reverse
仅在中等屏幕尺寸及以上时应用 flex-wrap-reverse
工具。
<div class="flex flex-wrap md:flex-wrap-reverse">
<!-- ... -->
</div>