Flexbox 和 Grid
用于控制单个网格项目如何沿其内联轴对齐的工具类。
Class | Styles |
---|---|
justify-self-auto | justify-self: auto; |
justify-self-start | justify-self: start; |
justify-self-center | justify-self: center; |
justify-self-center-safe | justify-self: safe center; |
justify-self-end | justify-self: end; |
justify-self-end-safe | justify-self: safe end; |
justify-self-stretch | justify-self: stretch; |
使用 justify-self-auto
工具类根据网格的 justify-items
属性值对齐项目:
<div class="grid justify-items-stretch ..."> <!-- ... --> <div class="justify-self-auto ...">02</div> <!-- ... --></div>
使用 justify-self-start
工具类将网格项目对齐到其内联轴的起始位置:
<div class="grid justify-items-stretch ..."> <!-- ... --> <div class="justify-self-start ...">02</div> <!-- ... --></div>
使用 justify-self-center
或 justify-self-center-safe
工具类将网格项目对齐到其内联轴的中心:
调整容器大小以查看对齐行为
justify-self-center
justify-self-center-safe
<div class="grid justify-items-stretch ..."> <!-- ... --> <div class="justify-self-center ...">02</div> <!-- ... --></div>
<div class="grid justify-items-stretch ..."> <!-- ... --> <div class="justify-self-center-safe ...">02</div> <!-- ... --></div>
当没有足够的可用空间时,justify-self-center-safe
工具类会将项目对齐到容器的起始位置而不是末端。
使用 justify-self-end
或 justify-self-end-safe
工具类将网格项目对齐到其内联轴的末端:
调整容器大小以查看对齐行为
justify-self-end
justify-self-end-safe
<div class="grid justify-items-stretch ..."> <!-- ... --> <div class="justify-self-end ...">02</div> <!-- ... --></div>
<div class="grid justify-items-stretch ..."> <!-- ... --> <div class="justify-self-end-safe ...">02</div> <!-- ... --></div>
当没有足够的可用空间时,justify-self-end-safe
工具类会将项目对齐到容器的起始位置而不是末端。
使用 justify-self-stretch
工具类将网格项目拉伸以填充其内联轴上的网格区域:
<div class="grid justify-items-start ..."> <!-- ... --> <div class="justify-self-stretch ...">02</div> <!-- ... --></div>
Prefix a justify-self
utility with a breakpoint variant like md:
to only apply the utility at medium screen sizes and above:
<div class="justify-self-start md:justify-self-end ..."> <!-- ... --></div>
Learn more about using variants in the variants documentation.