I'm attempting to design a resizable flex box that can only hold so much information. I want the inner elements to be horizontally stacked.
Flex objects should expand horizontally until they reach their full width and wrap around themselves. It will wrap to the next line when the width is reduced. When I resize so that the height is insufficient, however, I want the items to entirely overflow. It's partially inside the structure. How do I wrap it for height as well? I've written the following for wrapping it for width.
display: flex;
flex-direction: row;
flex-wrap: wrap;
background-color: green;
overflow: hidden;