Hacker News new | ask | show | jobs
by temp129038 2565 days ago
I feel like flexbox works better for how I think about building apps in that I'm usually working on one feature at a time, not "laying out" an entire 2d page at once.
3 comments

Flexbox is 1 dimensional vs grid which is 2. Use both. I just implement a Kanban type of UI at work. The main layout uses grid and the cards itself uses flexbox
Use what you think is right for the job, I have found many uses for grid in the last year that make web development a lot less migraine inducing.
Flexbox is easier, but I think grid produces better results