1. 弹性盒 & 网格
  2. 纵向对齐内容

Quick reference

属性
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;

基本用法

¥Basic usage

开始

¥Start

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

¥Use justify-start to justify items against the start of the container’s main axis:

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

中心

¥Center

使用 justify-center 沿容器主轴中心对齐条目:

¥Use justify-center to justify items along the center of the container’s main axis:

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

结尾

¥End

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

¥Use justify-end to justify items against the end of the container’s main axis:

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

之间的空间

¥Space between

使用 justify-between 沿容器的主轴对齐条目,使每个项目之间的空间相等:

¥Use justify-between to justify items along the container’s main axis such that there is an equal amount of space between each item:

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

周围空间

¥Space around

使用 justify-around 沿容器的主轴对齐条目,以便每个项目的每一侧都有相等的空间:

¥Use justify-around to justify items along the container’s main axis such that there is an equal amount of space on each side of each item:

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

空间均匀

¥Space evenly

使用 justify-evenly 沿容器的主轴对齐条目,以便每个项目周围有相等的空间,但也考虑到使用 justify-around 时每个项目之间通常会看到的空间加倍:

¥Use justify-evenly to justify items along the container’s main axis such that there is an equal amount of space around each item, but also accounting for the doubling of space you would normally see between each item when using justify-around:

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

拉紧

¥Stretch

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

¥Use justify-stretch to allow content items to fill the available space along the container’s main axis:

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

普通

¥Normal

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

¥Use justify-normal to pack content items in their default position as if no justify-content value was set:

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

有条件地应用

悬停、聚焦和其他状态

Tailwind 允许你使用变体修饰符在不同状态下有条件地应用工具类。例如,使用hover:justify-between 仅在 hover 时应用 justify-between 工具。

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

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

断点和媒体查询

你还可以使用变体修饰符来定位媒体查询,例如响应式断点、暗黑模式、首选减少运动等。例如,使用 md:justify-between 仅在中等屏幕尺寸及以上时应用 justify-between 工具。

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

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