Good morning!
I'm currently designing a website with bootstrap. I used the table-responsive to create a table. I customised the table but i can't remove the gray underline?
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th>Track Name</th>
<th>Requested</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr>
<td><p>Remotion (Original Mix)</p><p><small><span class="grey_color">by</span> Ovaal</small></p></td>
<td>1 day ago</td>
<td><span class="label label-primary"><small>Waiting for Approval</small></span></td>
</tr>
<tr>
<td><p>Remotion (Original Mix)</p><p><small><span class="grey_color">by</span> Ovaal</small></p></td>
<td>1 day ago</td>
<td><span class="label label-primary"><small>Waiting for Approval</small></span></td>
</tr>
</tbody>
</table>
</div>
I tried adding margin-top to tbody as well as adding margin-bottom to thead. Nothing works.
Thanks a lot!