Flex Bootstrap 4 Code Example


Example 1: align items center bootstrap


<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>

Example 2: justify-content-between bootstrap 4


<div class="d-flex justify-content-start">...</div>
<div class="d-flex justify-content-end">...</div>
<div class="d-flex justify-content-center">...</div>
<div class="d-flex justify-content-between">...</div>
<div class="d-flex justify-content-around">...</div>

Example 3: centralize div bootstrap


<div class="row align-items-center justify-content-center">
<div class="col">This will be centered vertically and horizontally</div>
</div>

Example 4: ustify-content: flex-end; bootstrap


<div class="d-flex justify-content-end">...</div>

Example 5: flex wrap bootstrap


<div class="d-flex flex-wrap">...</div>

Example 6: alighn right boostrap 4


<div class="float-left">Float left on all viewport sizes</div><br>
<div class="float-right">Float right on all viewport sizes</div><br>
<div class="float-none">Don't float on all viewport sizes</div>

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools