Files
2018-10-16 21:32:40 +05:30

330 B

title
title
Use the flex-direction Property to Make a Column

Use the flex-direction Property to Make a Column

To stack the child elements of your flex container on top of each other you would change the flex-direction the following way:

#main-container {
    display: flex;
    flex-direction: column;
}