1. 弹性盒 & 网格
  2. 纵向对齐自身

Quick reference

属性
justify-self-autojustify-self: auto;
justify-self-startjustify-self: start;
justify-self-endjustify-self: end;
justify-self-centerjustify-self: center;
justify-self-stretchjustify-self: stretch;

基本用法

¥Basic usage

自动

¥Auto

使用 justify-self-auto 根据网格的 justify-items 属性的值对齐条目:

¥Use justify-self-auto to align an item based on the value of the grid’s justify-items property:

01
02
03
04
05
06
<div class="grid justify-items-stretch ...">
  <!-- ... -->
  <div class="justify-self-auto ...">02</div>
  <!-- ... -->
  <!-- ... -->
  <!-- ... -->
  <!-- ... -->
</div>

开始

¥Start

使用 justify-self-start 将网格项与其内联轴的起点对齐:

¥Use justify-self-start to align a grid item to the start of its inline axis:

01
02
03
04
05
06
<div class="grid justify-items-stretch ...">
  <!-- ... -->
  <div class="justify-self-start ...">02</div>
  <!-- ... -->
  <!-- ... -->
  <!-- ... -->
  <!-- ... -->
</div>

中心

¥Center

使用 justify-self-center 将网格项目沿其内联轴的中心对齐:

¥Use justify-self-center to align a grid item along the center of its inline axis:

01
02
03
04
05
06
<div class="grid justify-items-stretch ...">
  <!-- ... -->
  <div class="justify-self-center ...">02</div>
  <!-- ... -->
  <!-- ... -->
  <!-- ... -->
  <!-- ... -->
</div>

结尾

¥End

使用 justify-self-end 将网格项与其内联轴的末端对齐:

¥Use justify-self-end to align a grid item to the end of its inline axis:

01
02
03
04
05
06
<div class="grid justify-items-stretch ...">
  <!-- ... -->
  <div class="justify-self-end ...">02</div>
  <!-- ... -->
  <!-- ... -->
  <!-- ... -->
  <!-- ... -->
</div>

拉紧

¥Stretch

使用 justify-self-stretch 拉伸网格项以填充其内联轴上的网格区域:

¥Use justify-self-stretch to stretch a grid item to fill the grid area on its inline axis:

01
02
03
04
05
06
<div class="grid justify-items-start ...">
  <!-- ... -->
  <div class="justify-self-stretch ...">02</div>
  <!-- ... -->
  <!-- ... -->
  <!-- ... -->
  <!-- ... -->
</div>

有条件地应用

悬停、聚焦和其他状态

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

<div class="justify-self-start hover:justify-self-end">
  <!-- ... -->
</div>

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

断点和媒体查询

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

<div class="justify-self-start md:justify-self-end">
  <!-- ... -->
</div>

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