删除表头周围的白色间距

时间:2016-02-05 20:22:20

标签: css html5

如何用css删除表格标题的每一列之间的空白?我希望整个标题是连续的背景颜色。

HTML片段:

<table class="asset-list">

  <thead>

    <tr>

      <th>Hostname</th>
      <th>IP Address</th>
      <th>Manufacturer</th>
      <th>Model</th>
      <th>Category</th>

    </tr>

  </thead>

这是我正在处理的项目网站的链接:

http://104.236.173.175/assets/

1 个答案:

答案 0 :(得分:1)

要考虑的几种方法:

border-collapse: collapse

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