css - Remove white spacing around table header -
this question has answer here:
- how delete border spacing in table 5 answers
how can remove white spacing between each column of table header css? i'd entire header 1 continuous background color.
html snippet:
<table class="asset-list"> <thead> <tr> <th>hostname</th> <th>ip address</th> <th>manufacturer</th> <th>model</th> <th>category</th> </tr> </thead>
here's link project site i'm working on:
a couple of methods consider:
border-collapse: collapse table { width:100%; margin:0; border:none; }
Comments
Post a Comment