@EsraaGamal-22Submitted over 4 years ago
how to put children inside flexbox in equally size ? rate this design please
how to put children inside flexbox in equally size ? rate this design please
Hey EsraaGamal-22, So far so good. The best way I have been able to set the width of a flexbox item is to set the flexbox child's flex-basis value to something.
For example, you can set each flexbox child to be 30% of the width of its parent, so you set
flex-basis: 30%
I hope this helps. Feel free to reach out if you have anymore questions.