GC Design System CSS Shortcuts
Home Start to use Page templates overview Basic page Components overview Breadcrumbs Button Card Checkboxes Container Date input Date modified Details Error message Error summary Fieldset File uploader Footer Grid Header Heading Icon Input Language toggle Link Notice Pagination Radios Screenreader-only Search Select Side navigation Signature Stepper Text Textarea Theme and topic menu Top navigation CSS shortcuts overview Reset styles Responsive layout State Box sizing Container sizing Display Overflow Position Visibility Font Font family Font size Font style Font weight Line height Link colour Link size Link text decoration List style Text align Text colour Text overflow Text transform Word break Margin Padding Align content Align items Align self Flex Flex direction Flex grow Flex shrink Flex wrap Gap Grid columns Grid rows Justify content Justify items Justify self Order Place content Place items Place self Background colour Border colour Border radius Border style Border width Icon names Icon size Image Cursor Pointer events Transition Styles overview Design tokens Colour tokens Spacing tokens Typography tokens Contact us Get involved Find a demo

Align self

The align self class sets the align-self property. It controls how an individual item aligns itself along the container’s cross axis, allowing it to override the container’s align-items setting for that specific item.

In flexbox, the flex-direction property sets the main and cross axis. The effects of align-self change based on the container's direction.

Overview

CSS Shortcut class Applied style
align-self-auto
align-self: auto;
align-self-baseline
align-self: baseline;
align-self-center
align-self: center;
align-self-stretch
align-self: stretch;
align-self-start
align-self: start;
align-self-end
align-self: end;

Examples

Auto
align-self-auto

The item with the align-self-auto class follows the container’s align-items setting and aligns automatically along the cross axis.

In row layouts, alignment follows the vertical cross axis.
In column layouts, alignment follows the horizontal cross axis.

1

2

3

<div class="d-flex align-items-center">
  <p>1</p>
  <p class="align-self-auto">2</p>
  <p>3</p>
</div>

Baseline
align-self-baseline

The item with the align-self-baseline class aligns its text baseline with the baselines of other items along the cross axis.

In row layouts, baseline alignment is vertical.
In column layouts, baseline alignment is horizontal.

1

2

3

<div class="d-flex align-items-start">
  <p class="pb-800">1</p>
  <p class="align-self-baseline">2</p>
  <p class="pt-900">3</p>
</div>

Centre
align-self-center

The item with the align-self-center class is centred along the cross axis, overriding the container’s align-items setting.

In row layouts, the item is centred vertically.
In column layouts, the item is centred horizontally.

1

2

3

<div class="d-flex align-items-end">
  <p>1</p>
  <p class="align-self-center">2</p>
  <p>3</p>
</div>

Stretch
align-self-stretch

The item with the align-self-stretch class stretches to fill the container along the cross axis (unless a fixed size is set), overriding the container’s align-items setting.

In row layouts, the item stretches vertically.
In column layouts, the item stretches horizontally.

1

2

3

<div class="d-flex align-items-center">
  <p>1</p>
  <p class="align-self-stretch">2</p>
  <p>3</p>
</div>

Start
align-self-start

The item with the align-self-start class aligns to the start of the cross axis, overriding the container’s align-items setting.

In row layouts, the item aligns to the top.
In column layouts, the items aligns to the left.

1

2

3

<div class="d-flex align-items-center">
  <p>1</p>
  <p class="align-self-start">2</p>
  <p>3</p>
</div>

End
align-self-end

The item with the align-self-end class aligns to the end of the cross axis, overriding the container’s align-items setting.

In row layouts, the item aligns to the bottom.
In column layouts, the item aligns to the right.

1

2

3

<div class="d-flex align-items-center">
  <p>1</p>
  <p class="align-self-end">2</p>
  <p>3</p>
</div>

Conditional styling Apply this style to specific screen sizes Use a responsive layout prefix to apply this class only to a specified screen size. The available breakpoints are:

  • xs: > 480px
  • sm: > 640px
  • md: > 768px
  • lg: > 1024px
  • xl: > 1280px
  
<div class="xs:align-self-center ...">
  ...
</div>
  

Learn more about the responsive layout prefix.

2025-10-01