Normal
One
Two
Three
flex justify-content align-items
Four
Five
Six
css
.center-one { display: flex; justify-content: center; align-items: center; }
grid justify-content align items
Seven
Eight
Nine
css
.center-two { display: grid; justify-content: center; align-items: center; }
grid justify-items align-items
Ten
Eleven
Twelve
css
.center-three { display: grid; justify-items: center; align-items: center; }
flex justify-items align-items
Thirteen
Fourteen
Fifteen
css
.center-four { display: flex; justify-items: center; align-items: center; }
Note
Note that
justify-items
has no effect in flexbox