Is it possible to specify a custom width or height for the container when using Bootstrap without affecting its default responsiveness? My main concern is how to eliminate the space below the content in the Bootstrap container. Here's a screenshot screenshot along with the code snippet where I added a border to identify the bottom space easily.
<footer class="border">
<div class="container border">
<p class="light">2024 © Secured E-Voting System for <span class="text-primary">Sulivan National High School</span></p>
</div>
</footer>
I've attempted using classes like mb-0 and pb-0, but they did not resolve the issue. Additionally, I tried using d-flex align-items-end to position the contents at the bottom of the container with no success.