I'm trying to achieve a fixed sidebar where the footer should not interfere with the fixed sidebar.
<body>
<div>
<div class="sidebar"> <!-- Fixed sidebar -->
</div>
<div class="content">
<!-- Long article -->
</div>
</div>
<div class="footer">
</div>
</body>