Skip to main content

justify-self Property in CSS Grid Layouts

justify-self specifies how browsers should position the selected grid item along its cell's row (inline) axis.

The justify-self property accepts the following values:

  • stretch
  • start
  • center
  • end

Let's discuss the four values.

What Is justify-self: stretch in CSS Grid?

stretch is justify-self's default value. It stretches the selected grid item to fill its cell's row (inline) axis.

Illustration of justify-self's stretch value in CSS
Grid

justify-self's stretch value stretches the selected grid item to fill its cell's row axis

Here's an example:

section {
display: grid;
justify-items: start;
grid-template-columns: 1fr 1fr;
background-color: orange;
margin: 10px;
}

div {
border: 1px solid black;
background-color: purple;
color: white;
padding: 10px;
border-radius: 5px;
}

.grid-item1 {
justify-self: stretch;
}

Try Editing It

The snippet above used the stretch value to stretch grid-item1 to fill its cell's row axis.

What Is justify-self: start in CSS Grid?

start positions the selected grid item with the row-start edge of its cell's row axis.

Illustration of justify-self's start value in CSS
Grid

justify-self's start value positions the selected grid item to its cell's row-start edge

Here's an example:

section {
display: grid;
grid-template-columns: 1fr 1fr;
background-color: orange;
margin: 10px;
}

div {
border: 1px solid black;
background-color: purple;
color: white;
padding: 10px;
border-radius: 5px;
}

.grid-item1 {
justify-self: start;
}

Try Editing It

The snippet above used the start value to position grid-item1 to its cell's row-start edge.

What Is justify-self: center in CSS Grid?

center positions the selected grid item to the center of its cell's row axis.

Illustration of justify-self's center value in CSS
Grid

justify-self's center value positions the selected grid item to its cell's center

Here's an example:

section {
display: grid;
grid-template-columns: 1fr 1fr;
background-color: orange;
margin: 10px;
}

div {
border: 1px solid black;
background-color: purple;
color: white;
padding: 10px;
border-radius: 5px;
}

.grid-item1 {
justify-self: center;
}

Try Editing It

The snippet above used the center value to position grid-item1 to its cell's center.

What Is justify-self: end in CSS Grid?

end positions the selected grid item with the row-end edge of its cell's row axis.

Illustration of justify-self's end value in CSS
Grid

justify-self's end value positions the selected grid item to its cell's row-end edge

Here's an example:

section {
display: grid;
grid-template-columns: 1fr 1fr;
background-color: orange;
margin: 10px;
}

div {
border: 1px solid black;
background-color: purple;
color: white;
padding: 10px;
border-radius: 5px;
}

.grid-item1 {
justify-self: end;
}

Try Editing It

The snippet above used the end value to position grid-item1 to its cell's row-end edge.

Overview

This article discussed what a CSS justify-self property is. We also discussed its values.

Your support matters: Buy me a coffee to support CodeSweetly's mission of simplifying coding concepts.

Tweet this article