How to align div in row using flexbox ?
I love learning about technology and sharing that with others
Use this CSS on the container which contains several div and we wants to align them in row
here i am aligning them in row and justify-content is center so first they will be centered
and then i will increase the width of each div inside the main container
.paymentMilestoneContainer {
display: flex;
flex-flow: row;
justify-content: center;
}

