I am currently working on a Bootstrap page layout with three columns, each set to 100% height and equipped with scrollbars, while keeping the body free of any scrollbars. The desired layout should look like this: https://i.sstatic.net/sA5Bb.jpg
Here is my code so far:
<main role="main" class="container">
<div class="row">
<div class="col-md-3 ">
Navigation Area <br />
</div>
<div class="col-md-6">
Content Area <br />
</div>
<div class="col-md-3">
Profile Area <br />
</div>
</div>
</main>
As of now, I have not applied any additional CSS styles. Can you guide me on how to successfully achieve this desired layout?