show data in flex rows and columns code example
Example 1: display flex column
.container {
display: flex;
flex-direction: column;
}
Example 2: whats the best ways to 3 x 3 perfects squares on a webpage using flexbox
.parent {
display: flex;
height: 300px; /* Or whatever */
}
.child {
width: 100px; /* Or whatever */
height: 100px; /* Or whatever */
margin: auto; /* Magic! */
}