【问题标题】:Remove white spacing around table header [duplicate]删除表格标题周围的白色间距[重复]
【发布时间】:2016-05-15 22:37:57
【问题描述】:

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

HTML sn-p:

<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/

【问题讨论】:

  • border-collapse: collapse 添加到table 元素中。也可以考虑使用CSS reset

标签: css html


【解决方案1】:

需要考虑的几种方法:

border-collapse: collapse

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

【讨论】:

  • css属性中没有cell-paddingcell-spacing这样的东西
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2019-04-20
  • 1970-01-01
  • 2023-04-05
  • 1970-01-01
  • 2019-07-21
相关资源
最近更新 更多