When examining the page, I noticed that the borders overlap and thicken due to the detail section. I tried to eliminate all borders of the details class using CSS, but unfortunately, it didn't work as expected. The bottom border stubbornly remains in place and overlaps with other elements.
td colspan="100%" class="details"style="padding: 0 !important; border-bottom: none !important;"
Even after implementing this code, the issue persists.
.list-group {
max-height: 320px;
/* or any other desired value */
overflow-y: auto;
}
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" rel="stylesheet">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="ec8e8383989f989e8d9cacd9c2dfc2de">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Bootstrap Bundle JS -->
<script src="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="91f3fefee5e2e5e3f0e1d1a4bfa2bfa3">[email protected]</a>/dist/js/bootstrap.bundle.min.js"></script>
<div class="container-fluid">
<div class="row">
<div class="col-md-12 ps-0 pe-0">
<div class="table-responsive">
<table class="table table-bordered table-hover">
<thead>
<tr>
<th scope="col">Book</th>
<th scope="col">Poz No</th>
<th scope="col">Old Poz No</th>
<th scope="col">Description</th>
<th scope="col">Type</th>
<th scope="col">Unit</th>
<th scope="col">Current Price</th>
<th scope="col">Detail</th>
</tr>
</thead>
<tbody id="table-content">
<tr>
<td>Highways 2012 and Beyond</td>
<td>01.001</td>
<td>10.100.1001</td>
<td>Road Concrete Paving Master (for Airports Constr.)</td>
<td>Assessment</td>
<td>Kg</td>
<td>1415.00 TL</td>
<td><b type="button" class="collapse-button" data-bs-toggle="collapse" data-bs-target="#details_251" aria-expanded="false" aria-controls="details_251" onclick="toggleCaret('details_251')">
Detail
<i class="ph-bold ph-caret-down caret-icon"></i>
</b></td>
</tr>
<tr class="tr-detail" data-id="251">
<td colspan="100%" class="details" style="padding: 0 !important; border-bottom: none !important;">
<div id="details_251" class="collapse table-details">
... (omitted for brevity) ...
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<td colspan="100%" class="details"style="padding: 0 !important; border-bottom: none !important;"> it does not work.