Answers for "make max 3 rows in flex"

0

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

Browse Popular Code Answers by Language