Answers for "how to make 3 columns using flex"

CSS
0

flexbox 3 columns

.parent {
  display: flex;
}

.children {
  flex-basis: calc(100%/3);
}
Posted by: Guest on June-24-2021

Code answers related to "how to make 3 columns using flex"

Browse Popular Code Answers by Language