One of my current projects requires making a button that fills the entire width and height of the TD element. I have attempted setting the normal .btn-warning with -Xpx!important, but it did not produce the desired result.
Here is what I currently have:
However, this is what I am aiming for:
The code snippet I am using is as follows:
<tbody>
<tr>
<td class="td-btn"><a href="#" class="btn-sm btn btn-warning"><span class="glyphicon glyphicon-ok"></span></a></td>
<td><a href="#">Projectnaam</a></td>
</tr>
</tbody>
If anyone knows how to achieve a button that spans the full width/height of the TD element without any additional spacing, please share your insights!