freeCodeCamp/guide/english/certifications/responsive-web-design/css-flexbox/use-display-flex-to-positio.../index.md

768 B

title
Use display: flex to Position Two Boxes

Use display: flex to Position Two Boxes

Flexbox is a way to structure content in CSS3 which allows you to create responsie websites.

This challenge is to set the first out of three steps when using Flexbox. You need to make the parent container a flex one by adding display:flex; to its CSS section. The CSS style can target a specific ID or HTML tag, or be aplied to multiple containers using a class. The parent container can be any container-type element, such as a div, section, header, footer, etc.

Example:

#main-container {
    display: flex;
}