#Flexbox Question
4 messages · Page 1 of 1 (latest)
Try without "flex-direction: column"...
Yes, that's the answer. Default is stretch along the cross-axis - which is the row since you're flex-direction: column. By changing them to align-items: center you're removing the stretch and then placing them center which ALSO makes them their "natural" width.
wow that clears it up a lot. thank you!!