Flex Container
To start using the Flexbox model, you need to first define a flex container.
css
.flex-container {
display: flex;
justify-content: center;
}Try it yourself:
HTML
CSS
Result
Modern 1D layout module.
To start using the Flexbox model, you need to first define a flex container.
.flex-container {
display: flex;
justify-content: center;
}Try it yourself: