As a newcomer to HTML web layout (I must admit, I might be making rookie mistakes), I'm struggling with an issue that's been driving me crazy. Despite searching extensively, I haven't found a solution that fits my particular case.
I'm currently working on the layout for a desktop app I have in mind.
Here is the code snippet:
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="57273827273225793d2417667966617967">[email protected]</a>/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
... // rest of the code here
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="d-flex flex-column h-100">
<div class="content">
first menu
</div>
... // further content in similar structure
<div class="content bg-secondary">
Footer
</div>
</div>
The problem I'm facing is that the code is not respecting the 'overflow-auto' property in the 'content' section. Can someone help me understand why and how I can resolve this? Many thanks