1. 弹性盒子与网格
  2. 内容对齐

弹性盒子与网格

对齐内容

用于控制弹性和网格项目在容器主轴上如何定位的工具类。

ClassStyles
justify-start
justify-content: flex-start;
justify-end
justify-content: flex-end;
justify-center
justify-content: center;
justify-between
justify-content: space-between;
justify-around
justify-content: space-around;
justify-evenly
justify-content: space-evenly;
justify-stretch
justify-content: stretch;
justify-baseline
justify-content: baseline;
justify-normal
justify-content: normal;

示例

开始

使用 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="flex 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>

响应式设计

Prefix a justify-content utility with a breakpoint variant like md: to only apply the utility at medium screen sizes and above:

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

Learn more about using variants in the variants documentation.