.flex-parent {
display:flex;
border: 2px dashed blue;
flex-direction:row;
/* Change flex-direction to row-reverse, column, column-reverse to check the difference between them.*/
}
.inside-flex{
border: 1px solid black;
margin:5px;
padding:7px;
height:100px;
}