How to make grid view options for dropdown select on html css vue?

565 views Asked by At

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.

1

There are 1 answers

0
Fritzdultimate On

This can be achieved with CSS flexbox.

E.g


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

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