Do you use grid or flexbox?
uipencil.comSubmitted by pinkgallica in webmastery
I recently stopped Bootstrap and was surprised by how easy, sort of, grid is. The fact that you can visually picture how your layout will look with something like this:
grid-template-areas:
"nav nav nav"
"side main main"
"footer footer footer";
Is kind of amazing😄
I've had issues using Flexbox for entire layouts, but it's amazing for stuff like cards or navbars. I use Flexbox for my top nav.
Which do you use? Is it a combo of both, or neither?
jay wrote
I really need to start using both tbh.. I just apply float:left and float:right to basically everything haha.