Answers for "which bootstrap flex class will you use to put elements in the vertical center of the available width?"

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 flex class will you use to put elements in the vertical center of the available width?"

Browse Popular Code Answers by Language