I want to understand how we can fix the position of the particular section for time being just like in the below example.
In the above link, the apple watch product is fixed while the right content moves to some extent, and then the whole page moves.
I tried working on this by making the left side fixed by providing class sticky-top
<div class ="container">
<div class="row">
<div class = "col-sm-3 sticky-top">
<h1> left container</h1>
</div>
<div class = "col-sm-9 offset-2"></div>
</div>
</div>
Here I didnt put the whole code just a essence of what I tried and failed to acoomplish.