How do I make my flex item (article in this example), which has flex-grow: 1; not to overflow it\'s flex parent/container (main<
article
flex-grow: 1;
main<
I know this is really late, but for me, I found that applying flex-basis: 0; to the element prevented it from overflowing.
flex-basis: 0;