I have a bootstrap row with 2 cols inside. One col needs to be sticky on the left side, while the other col on the right side should contain multiple scrollable cards with text content.
https://i.sstatic.net/ysYlP.png
Looking at the image provided, the "Article" and "Post" cards should remain fixed in their position, while the posts on the right should be scrollable.
This is the code I currently have:
<div class="container-fluid">
<div class="row">
// Left column
<div class="col-md-3">
<app-articles></app-articles>
<app-navigation></app-navigation>
</div>
// Right column
<div class="col-md-9">
<div class="card" *ngFor="let post of posts; let i = index"></div>
</div>
</div>
</div>
Any suggestions on how to achieve this layout?