Seeking assistance to remove the unwanted whitespace in my code. I have attempted to set *{margin:0} as well as for p and pre tags, but it hasn't been effective. The issue persists even though I am using BS4. Here is the snippet of the troublesome code:
<div class="jumbotron container context" style="padding-bottom:3; padding-top:40">
<h1 class="bg-info">aaa</h1>
<pre>fsfsdfsd
fasfdds
fdsfsfsd
fdsfasdfsd
fdsfsdf
</pre>
</div><div class="jumbotron container" style="padding:0;">
<div class="carousel slide" data-interval="false" id="carousel_controls">
<div class="carousel-inner">
<div class="carousel-item active">
<a href="https://www.gettyimages.ie/gi-resources/images/Homepage/Hero/UK/CMS_Creative_164657191_Kingfisher.jpg" target="_blank">
<img class="img-fluid img-thumbnail rounded mx-auto d-block" src="https://www.gettyimages.ie/gi-resources/images/Homepage/Hero/UK/CMS_Creative_164657191_Kingfisher.jpg">
</a>
</div>
<a class="carousel-control-prev" data-slide="prev" href="#carousel_controls" role="button">
<span aria:hidden="true" class="carousel-control-prev-icon"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" data-slide="next" href="#carousel_controls" role="button">
<span aria:hidden="true" class="carousel-control-next-icon"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
I am struggling with eliminating the white space highlighted in the red box from the screenshot.