Using bootstrap to create a table and my code is as follows:
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>WebRTC Caller</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<style>
video{
transform: scale(-1, 1);
object-fit:cover;
}
</style>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="c3b3acb3b3a6b1eda9b083f2edf2f5edf3">[email protected]</a>/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
</head>
<body class="p-1">
<div class="border-top border-primary container-fluid">
<div class="row h-25">
<div class="col-6 border-left border-bottom border-primary">
</div>
<div class="col-6 border-left border-bottom border-right border-primary">
</div>
</div>
<div class="row h-25">
<div class="col-12 border-left border-bottom border-right border-primary">
dssdf
</div>
</div>
<div class="row h-25">
<div class="col-12 border-left border-bottom border-right border-primary overflow-auto h3">
fda
</div>
</div>
<div class="row h-25">
<div class="col-12 border-left border-bottom border-right border-primary overflow-auto h3">
e
</div>
</div>
</div>
</body>
</html>
Facing an issue where space exists between the last row and the second last row in the table layout. Removing the h3 class from the last 2 rows solves the problem, but the class is needed for mobile readability. How can this spacing issue be resolved?