css - Remove white spacing around table header -


this question has answer here:

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:

http://104.236.173.175/assets/

a couple of methods consider:

border-collapse: collapse  table {     width:100%;     margin:0;     border:none; } 

Comments

Popular posts from this blog

sublimetext3 - what keyboard shortcut is to comment/uncomment for this script tag in sublime -

java - No use of nillable="0" in SOAP Webservice -

ubuntu - Laravel 5.2 quickstart guide gives Not Found Error -