快速参考

属性
justify-normaljustify-content: normal;
justify-startjustify-content: flex-start;
justify-endjustify-content: flex-end;
justify-centerjustify-content: center;
justify-betweenjustify-content: space-between;
justify-aroundjustify-content: space-around;
justify-evenlyjustify-content: space-evenly;
justify-stretchjustify-content: stretch;

基本用法

开始

使用 justify-start 将项目对齐到容器主轴的起点

01
02
03
<div class="flex justify-start ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

中心

使用 justify-center 将项目沿容器主轴的中心对齐

01
02
03
<div class="flex justify-center ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

结束

使用 justify-end 将项目沿容器主轴的末端对齐

01
02
03
<div class="flex justify-end ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

间隔

使用 justify-between 将项目沿容器主轴对齐,使每个项目之间有相等的间距

01
02
03
<div class="flex justify-between ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

环绕间隔

使用 justify-around 将项目沿容器主轴对齐,使每个项目两侧有相等的间距

01
02
03
<div class="flex justify-around ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

均匀间隔

使用 justify-evenly 将项目沿容器主轴对齐,使每个项目周围有相等的间距,但也考虑使用 justify-around 时每个项目之间通常会出现的双倍间距

01
02
03
<div class="flex justify-evenly ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

拉伸

使用 justify-stretch 允许内容项沿容器的主轴填充可用空间。

01
02
03
<div class="grid grid-flow-col justify-stretch ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

正常

使用 justify-normal 将内容项打包到其默认位置,就像没有设置 justify-content 值一样。

01
02
03
<div class="flex justify-normal ...">
  <div>01</div>
  <div>02</div>
  <div>03</div>
</div>

有条件地应用

悬停、聚焦和其他状态

Tailwind 允许您使用变体修饰符在不同状态下有条件地应用实用程序类。例如,使用 hover:justify-between 仅在悬停时应用 justify-between 实用程序。

<div class="flex justify-start hover:justify-between">
  <!-- ... -->
</div>

有关所有可用状态修饰符的完整列表,请查看 悬停、聚焦和其它状态 文档。

断点和媒体查询

您还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗模式、prefers-reduced-motion 等等。例如,使用 md:justify-between 仅在中等屏幕尺寸及以上时应用 justify-between 实用程序。

<div class="flex justify-start md:justify-between">
  <!-- ... -->
</div>

要了解更多信息,请查看有关 响应式设计暗模式其他媒体查询修饰符 的文档。