flex box aint wrapping
can anyone tell me why my flexbox isnt wrapping even tho wrap is defined
6 Replies
Looks wrapped to me
You don't need to use flex-flow though. Use
flex-wrap: wrap;
🤔
default value for flex is row sobut if i
make my screen smaller
they dont go below eachother
that is because you set the parent with flex to a strict width
is that the issue?
so if I remove the strict width and replace it with a max width
it should be fine?
yea remove the min-width and width
i see, thanks