I'm using Bootstrap v. 4.0.0 and I have a two column (col-md-6 + col-md-6) layout:
<div class="container-fluid">
<div class="row">
<div class="col-md-6 projects--snasphot-area">
<!-- Many img here -->
</div>
<div class="col-md-6 sticky-top projects--info-area">
<!-- Text here -->
</div>
</div>
</div>
The left column is very long, and can be visualized by scrolling down the page. I would like the right column to follow along with the scrolling, so that its contents are always readable. Thus, I have tried to add the Boostrap "sticky-top" class and also to assign "align-self-start", as suggested in a previous topic... But there's still no scrolling.