1. Flexbox 和 Grid
  2. justify-self

Flexbox 和 Grid

justify-self

用于控制单个网格项如何沿其内联轴对齐的工具。

样式
justify-self-auto
justify-self: auto;
justify-self-start
justify-self: start;
justify-self-end
justify-self: end;
justify-self-center
justify-self: center;
justify-self-stretch
justify-self: stretch;

示例(Examples)

¥Examples

自动(Auto)

¥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)

¥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)

¥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)

¥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)

¥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>

响应式设计(Responsive design)

¥Responsive design

justify-self 工具前面使用断点变体如 md: 仅在 medium 屏幕尺寸及以上时应用工具:

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

请参阅 变体文档 详细了解如何使用变体。

TailwindCSS v4.0 中文网 - 粤ICP备13048890号