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

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

Browse Popular Code Answers by Language