563 B
563 B
title
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 thre steps when using Flexbox. You need to make the parent container a flex one by adding display:flex; to its CSS section.
Example:
#main-container {
display: flex;
}