After extensive research and testing various solutions unsuccessfully, I am still facing an issue with my web app layout. Specifically, when I add a table to the content container, it causes the container to resize and shifts the position of the footer. Is there a way to make the table utilize the remaining space within the content container?
Here is a snippet of the HTML structure:
<!DOCTYPE html>
<html>
<head>
<title>Spring Security Thymeleaf - User Management</title>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="/css/style.css"/>
</head>
<body>
<header>
<nav class="navbar navbar-expand-md bg-dark navbar-dark">
<a class="navbar-brand" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="nav navbar-nav navbar-left">
<li class="nav-item">
<a class="nav-link" href="/overview/index.html">Overview</a>
</li>
...
</footer>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="/js/main.js"></script>
</body>
</html>
(Even though the HTML is generated through Java/Spring/Thymeleaf, I believe the issue is not platform-specific)
Thank you,
Stefan