Currently in the process of constructing a website utilizing the Bootstrap 4 framework and encountering difficulties with aligning items properly.
For instance:
Refer to Bootstrap 4 official documentation for row positioning
Following the code in the docs:
<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 class="row align-items-center">
<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 class="row align-items-end">
<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>
Previous solutions suggested adding the min-height property to the parent class, but this did not resolve the issue.
Apologies for what may seem like a basic question, as I am a newcomer to bootstrap.
Thank you for taking the time.