I have used jumbotron to have a full height page on the desktop version on my website, but I want to have the normal layout (disable jumbotron) on the mobile version. Because on the mobile version, content inside the jumbotron div is going outside as it is not enough space. And below div content is overlapping those content. I'm using Bootstrap 4. My code as below,
<section class="jumbotron">
<div class="container">
<div class="content row">
<div class="col-12 jumbotron">
<div class="single-work">
<h2>Title here</h2>
<p>Text here</p>
</div>
</div>
</div>
</div>
</section>