display:flex;

1
2
3
4
5
6
7
8

CSS

.container {
    display: flex;
    flex-direction: row;
    justify-content: normal;
    align-items: stretch;
    flex-wrap: nowrap;
}

Try it yourself!

8

References