Solution 1 :

This can be achieved with CSS flexbox.

E.g


.container {
    display: flex;
    flex-direction: row;
}

Read more about flexbox on https://w3schools.com

Problem :

The dropdown options have an option with one column. I want to make it looks alike grid view selection.
This is what to make it looks like.

By