Html 无法删除表中的边框

Html 无法删除表中的边框,html,css,Html,Css,请帮帮我,我想不出怎么去掉这个边框线。在Chrome的检查中找不到它。我已经尝试了论坛上所有我能找到的东西,但到目前为止没有运气 我无法用小提琴复制它,但现场 HTML 您有tr:first child th:after,tr:first child td:after和border-bottom:1px-solid\1c1d 您可以使用以下方法覆盖此选项: tr:first-child th:after, tr:first-child td:after { border: none;

请帮帮我,我想不出怎么去掉这个边框线。在Chrome的检查中找不到它。我已经尝试了论坛上所有我能找到的东西,但到目前为止没有运气

我无法用小提琴复制它,但现场

HTML


您有
tr:first child th:after,tr:first child td:after
border-bottom:1px-solid\1c1d

您可以使用以下方法覆盖此选项:

tr:first-child th:after, tr:first-child td:after {
    border: none;
}
确保在上一个代码(或编辑原始css文件)之后执行此操作


如果你有自定义css文件,那么使用!重要信息

提供一个工作示例。当前代码没有任何边界。我不知道如何。。。这是我正在使用的代码,这是我在浏览器中看到的。显然,这不是全部代码。打开一个JSFIDLE并将所有代码放在那里。确保您可以看到边框,否则将无法提供帮助。谢谢,我刚刚更新了一个指向实时站点的链接。我试着用小提琴演奏,但没有问题。
.table {
  color: $Blue;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: white;
}
th {
  font-family: 'PPsans', Fallback, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
}
td {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  text-transform: capitalize;
  padding: 5px 0;
}
.cell-right {text-align:right;}
.cell-left {text-align: left;}
tr:first-child th:after, tr:first-child td:after {
    border: none;
}
tr:first-child th:after, tr:first-child td:after{
border-bottom: none !important; 
}