Making CSS Grid work with Flexbox
In this part, you’ll learn to make Flexbox and the CSS Grid work together — peacefully.
We'll cover the following...
These two technologies, Flexbox and Grid, have changed how layouts in CSS is approached. Where possible, it is efficient to use both technologies.
Let’s delve in.
For the section housing the music details, we will use Flexbox.
How do you know where to use Flexbox?
As a general rule of thumb, it is appropriate to use Grid to layout the overall page layout, and Flexbox for inner UI components.
A grid item can be a flex container. A flex ...