|
Back to CSScss Lesson 4

Flexbox

Modern 1D layout module.

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