Seeking assistance with a frustrating issue in Bootstrap 4:
I tried to implement the align-self-start
flexbox alignment using the code from this page . However, the example provided on that page does not seem to work. Is there a simpler way to achieve the same result with different terms? Or is the code snippet I used completely outdated now?
<div class="container">
<div class="row align-items-start">
<div class="col">
One of three columns
</div>
<div class="col">
One of three columns
</div>
<div class="col">
One of three columns
</div>
</div>
</div>
Appreciate any help you can provide!