[Vuejs]-Flexbox flex-flow alternative for earlier versions of browsers

0👍

You can use float or inline-block to get this desired layout, see below example:

div {
  width:100%;
  padding:0 15px;
}

div img {
  float:left;
  margin:10px;
}
<div>
  <img src="http://placehold.it/100x100" />
  <img src="http://placehold.it/100x100" />
  <img src="http://placehold.it/100x100" />
  <img src="http://placehold.it/100x100" />
  <img src="http://placehold.it/100x100" />
  <img src="http://placehold.it/100x100" />
  <img src="http://placehold.it/100x100" />
  <img src="http://placehold.it/100x100" />
  <img src="http://placehold.it/100x100" />
  <img src="http://placehold.it/100x100" />
</div>

JSFiddle

Leave a comment