Introduction to Flexbox
Learning Flexbox can be a pain in the butt. For most persons, it’s not particularly fun at first. It challenges you to rethink how you’ve dealt with layouts in css.
Don’t fret. I really would walk you through all you need to know. So, let’s get started.
Why Use Flexbox?
CSS has evolved a lot over the past few years. Designers loved the introduction of filters, transitions, and transforms. But something was missing. Something we all craved.
The problem of crafting intelligent page layouts with CSS seemed to have persisted for too long, and this got many of us writing hacky CSS.
We always had to deal with floats, table display hacks, and the consequences they brought. If you’ve written CSS for sometime, you can probably relate to this. And if not, welcome to a better world!
It seems like our prayers as designers and front-end developers have finally been heard. This time, in grand style.
Now we can all ditch those hacky CSS tricks. No more incessant use of floats, ...