[Vuejs]-Thumbnail grid is displayed in a column

0👍

You should add a display:flex; flex-wrap:wrap to the parent container

Here is a similar pen using div elements instead of li
https://codepen.io/chrismclarke/pen/ExYZxbG

0👍

Apply following code in your CSS.

ul{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

Leave a comment