GC Design System CSS Shortcuts
GC Design System 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 items

The align items class sets the align-items property. It controls how items are aligned along the cross axis of a flex or grid container.

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

Overview

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

Examples

Baseline
align-items-baseline

Items are aligned along their text baselines, so text or inline content lines up consistently across items on the cross axis.

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

1

2

3

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

Centre
align-items-center

Items are centred along the cross axis.

In row layouts, there’s equal space above and below.
In column layouts, there’s equal space to the left and right.

1

2

3

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

Stretch
align-items-stretch

Items stretch to fill the container along the cross axis.

In row layouts, they fill vertical space unless a fixed size is set.
In column layouts, they fill horizontal space unless a fixed size is set.

1

2

3

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

Start
align-items-start

Items are aligned to the start of the cross axis.

In row layouts, they’re aligned to the top of the container.
In column layouts, they’re aligned to the left of the container.

1

2

3

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

End
align-items-end

Items are aligned to the end of the cross axis.

In row layouts, they’re aligned to the bottom of the container.
In column layouts, they’re aligned to the right of the container.

1

2

3

<div class="d-flex align-items-end">
  <p>1</p>
  <p>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-items-center ...">
  ...
</div>
  

Learn more about the responsive layout prefix.

2025-10-01