Utilizing the table feature in Bootstrap 4:
#tablex {
border-collapse: collapse;
border-radius: 1em;
overflow: hidden;
border: 0px;
}
#tablex tr,
th {
padding: 1em;
border-bottom: 2px solid white;
}
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="cfada0a0bbbcbbbdaebf8ffbe1ffe1ff">[email protected]</a>/dist/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<div class="col-md-9">
<h3>last updated</h3>
<div class="liste">
<table class="table table-dark table-md table-responsive-md" id="tablex">
<thead class="thead-inverse">
<tr>
<th>#</th>
<th>Manga Adı</th>
<th>Bölümler</th>
<th>Yükleyen</th>
<th>Linkler</th>
</tr>
</thead>
<tbody>
<tr>
<td><i class="fas fa-file-download"></i></td>
<td>Deneme deneme</td>
<td>1-56</td>
<td>libero1i</td>
<td>yadi.sk/bilmemne</td>
</tr>
Is there a way to remove the radius when adding border: 0px;
?
https://i.sstatic.net/LZAJP.png
Any suggestions on how to achieve this?