HTML:
<body class="header">
<div class="container-fluid">
<div class="container d-flex justify-content-center">
<p class="display-3">Secure Vault</p>
</div>
</div>
<div class="">
<div class="d-flex justify-content-center align-items-center" style="height: 800px;">
<div class="container border t-box col-5">
<table class="table table-hover t-responsive" >
<tbody>
<tr>
<td>
Lorem ipsum dolor sit amet cons
</td>
<td class="d-flex justify-content-center">
<button type="button" class="btn btn-outline-light btn-sm">View Details</button>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
CSS:
.t-transparent{
background-color: transparent;
}
.half-opaque{
opacity: 50%;
}
.nav-t{
height: 70px;
}
.t-box{
border-radius: 10px;
padding: 10px;
}
.t-responsive{
display: block;
max-height: 300px;
overflow-y: scroll;
}
tr{
max-width: 778px;
}
I am working with Bootstrap 5 and facing an issue with the table lines appearing under each row due to the tbody wrapping. How can I resolve this design challenge?