100DaysofCode
Day-29
Got introduced to Flexbox in The Odin Project and learned visually from the flexboxfroggy website.
- display: flex goes on the container, not items
- align-items (all) vs align-self (one)
- order changes the visual order without touching HTML (Still don't understand well)
- flex-direction, flex-wrap, justify-content, flex-flow, and align-content
I'll learn more about Flexbox tomorrow!
Great job on Day 29! 🙌
Flexbox can feel a bit tricky at first, especially with properties like
order
— but once you see them in action, it really clicks.order
is especially useful when you want to visually rearrange items without changing the HTML structure (great for responsive design!).Also, shoutout to Flexbox Froggy — such a fun way to learn!
Keep it up — you're making solid progress. Can't wait to see what you build once Flexbox becomes second nature.