Flex box: test your skills, task 3

Hello, how to solve flex box task 3 center me ? Thank you

Hello @samo267267

hope that you doing fine

you can use the following

.parent {
display:flex;
align-items: center;
justify-content: center;

}

or the following

.parent {
display:flex;
justify-content: center;
}

.child {
align-self: center;
}

hope that help and have a nice day :slight_smile:

1 Like