I am experiencing an issue with the layout in Mozilla and IE 11. The content inside the Div is appearing below the footer, as shown in the screenshot provided. Below you can find the code for the div and the footer sections. The Div is enclosed within a section tag and consists of a single row containing Left-side, center, and right-side divs. The right-side div should be scrollable while the footer should start at the end of the content. https://i.sstatic.net/Hxh41.jpg
https://i.sstatic.net/xsH2s.jpg
https://i.sstatic.net/sJqBi.jpg
.footer-area {
padding: 70px 0px;
}
.single-footer-widget {
color: #fff;
}
.right-side {
float: right;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet"/>
<div class="col-lg-3 col-md-3 right-side" style="overflow-y:auto;max-height:1400px;">
<div style="margin-bottom:15px;">
</div>
</div>
<!-- //Footer -->
<footer class="footer-area" style="position:relative;">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="single-footer-widget">
<h6>Dedication</h6>
<div class="row">
<div class="col">
<p>Dedicated to <u style="cursor:pointer;" data-toggle="modal" data-target="#introModal">"Mian Abrar-ul-Wahab Kakakhaill"</u></p>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="single-footer-widget">
<h6>Navigation Links</h6>
<div class="row">
<div class="col">
<ul>
<li>
<a class="customText" href="index.php">
<p class="footerHover">Home</p>
</a>
</li>
<li>
<a class="customText" href="blog.php">
<p class="footerHover">Blog</p>
</a>
</li>
<li>
<a class="customText" href="about.php">
<p class="footerHover">About Us</p>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="single-footer-widget">
<h6>Our Address</h6>
<h6> UK OFFICE </h6>
<p><strong>Suite 3 Davis House </strong><br>
<strong>Lodge Causeway Trading Estate </strong><br>
<strong>Lodge Causeway - Fishponds </strong><br>
</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="single-footer-widget">
<h6>OFFICE2 </h6>
<p><strong>Capital Tower 2,Office # 2</strong><br>
</p>
</div>
</div>
</div>
</div>
</footer>