So I have created an HTML layout with rows and columns, resembling this structure:
<div class="row">
<div class="col-sm-2 col-lg-2 col-md-2">
Some Code Here
</div>
<div class="col-sm-10 col-lg-10 col-md-10">
Some Code Here
</div>
</div>
The issue arises when I try to make the first column fixed while allowing the second one to scroll freely. Setting the CSS property position to fixed achieves the desired outcome initially. However, upon testing responsive design mode, the first column gets completely overlapped by the second one. Any suggestions on how to resolve this problem?