To address the issue of setting divs with a 100% height not solving your problem, consider using this JavaScript code snippet in conjunction with Bootstrap. By utilizing the following code, you can ensure that your div always spans 100% of the screen height:
$("div_name").css("min-height", $(window).height() );
Implementing this snippet will adjust the height of the div wrapping your section dynamically. For any section on your website requiring full window height, include a 'wrapper' div as shown below:
<div class="section">
<h2>Section 1!</h2>
<p>This section will match your browser's height.</p>
</div>
<div class="section">
<h2>Section 2!</h2>
<p>Another section tailored to the browser's height.</p>
</div>
For a practical demonstration, feel free to explore my portfolio at .