Answers for "can i specify a max number of elements on a line inside flexbox"

2

flex max item per row

.parent {
  display: flex;
  flex-wrap: wrap;
}

.child {
  flex: 2 0 21%; /* explanation below */
  margin: 5px;
  height: 100px;
  background-color: blue;
}
Posted by: Guest on April-11-2021

Code answers related to "can i specify a max number of elements on a line inside flexbox"

Browse Popular Code Answers by Language