Flexbox & GridPlace Self

Place Self

Controls how single items are justified and aligned simultaneously.

Widely available

This feature is well established and works across many devices and browser versions.

Chrome
Edge
Firefox
Safari
ClassStyle
ps-autoplace-self: auto;
ps-cplace-self: center;
ps-eplace-self: end;
ps-splace-self: start;
ps-stplace-self: stretch;

Auto

The item will use the default alignment based on the container's alignment properties.

A
B
C
<div class="d-g g-4 gtc-3 pi-st">
<div class="ai-c bg-indigo-9 d-14 d-f jc-c tc-indigo-5">A</div>
<div class="ai-c bg-indigo d-14 d-f jc-c ps-auto tc-white">B</div>
<div class="ai-c bg-indigo-9 d-14 d-f jc-c tc-indigo-5">C</div>
</div>

Center

The item will be centered within its grid area.

A
B
C
<div class="d-g g-4 gtc-3 pi-st">
<div class="ai-c bg-indigo-9 d-14 d-f jc-c tc-indigo-5">A</div>
<div class="ai-c bg-indigo d-14 d-f jc-c ps-c tc-white">B</div>
<div class="ai-c bg-indigo-9 d-14 d-f jc-c tc-indigo-5">C</div>
</div>

End

The item will be aligned to the end of its grid area.

A
B
C
<div class="d-g g-4 gtc-3 pi-st">
<div class="ai-c bg-indigo-9 d-14 d-f jc-c tc-indigo-5">A</div>
<div class="ai-c bg-indigo d-14 d-f jc-c ps-e tc-white">B</div>
<div class="ai-c bg-indigo-9 d-14 d-f jc-c tc-indigo-5">C</div>
</div>

Start

The item will be aligned to the start of its grid area.

A
B
C
<div class="d-g g-4 gtc-3 pi-st">
<div class="ai-c bg-indigo-9 d-14 d-f jc-c tc-indigo-5">A</div>
<div class="ai-c bg-indigo d-14 d-f jc-c ps-s tc-white">B</div>
<div class="ai-c bg-indigo-9 d-14 d-f jc-c tc-indigo-5">C</div>
</div>

Stretch

The item will stretch to fill its grid area along the cross axis.

A
B
C
<div class="d-g g-4 gtc-3 pi-st">
<div class="ai-c bg-indigo-9 d-f jc-c h-14 tc-indigo-5">A</div>
<div class="ai-c bg-indigo d-f jc-c h-14 ps-st tc-white">B</div>
<div class="ai-c bg-indigo-9 d-f jc-c h-14 tc-indigo-5">C</div>
</div>

Using utility variants

Learn how to override existing utilities based on the user's screen size or other factors, such as hover states.

Targeting different viewports

You can combine responsive breakpoints like sm:ps-*, md:ps-*, lg:ps-*, and xxl:ps-* to allow targeting specific utilities in different viewports.

Targeting hover states

Alternatively, you can apply :hover by using h:ps-* utility to override elements and change their values when hovering over them.