⊗mkPmBMFEPW 168 of 250 menu

Flex Element Parent Width in CSS

If the parent of a flex element does not have a width specified, then it will take up all available space in width:

<div class="parent"> <div class="child">1</div> <div class="child">2</div> <div class="child">3</div> </div> .parent { display: flex; border: 1px solid red; } .child { width: 50px; height: 50px; border: 1px solid green; }

:

enru