Answers for "which bootstrap class will you use to align child items vertically in the middle of the available space? (flex-direction:row)"

22

bootstrap flex vertical align

<div class="d-flex align-items-start">...</div>
<div class="d-flex align-items-end">...</div>
<div class="d-flex align-items-center">...</div>
<div class="d-flex align-items-baseline">...</div>
<div class="d-flex align-items-stretch">...</div>
Posted by: Guest on March-21-2020

Code answers related to "which bootstrap class will you use to align child items vertically in the middle of the available space? (flex-direction:row)"

Browse Popular Code Answers by Language