Menu
Coddy logo textTech

Container and Items

Lesson 2 of 15 in Coddy's CSS Flexbox - The Complete Course course.

Each Flexbox has two types of elements: a container and an item.

<div class="container">
  <div>1</div>
  <div>2</div>
  <div>3</div>
  <div>3</div>
</div>

In the above example, there are four flex items inside flex container.

In the next lessons, you will learn about the flex container and then about the items.

Try it yourself

This lesson doesn't include a code challenge.

All lessons in CSS Flexbox - The Complete Course