表格边框:0不起作用

时间:2015-04-17 13:16:41

标签: css border

我不能为我的生活摆脱桌边界。我在style.csscustom.css

中尝试了以下代码
article table {width: 100%; margin-bottom: 20px; border: none; border-collapse: collapse;}
article table td, article table th {padding: 5px; border: none; border-collapse: collapse;}

我也尝试过border:0px而且我试过在表格前省略“文章” - 仍然没有效果。

你可以看到它看起来多么愚蠢here

3 个答案:

答案 0 :(得分:0)

如果你在谈论所有表格单元格周围的1px灰色边框,它似乎来自你的style.css文件中的这个定义:

article table td,article table th{padding:5px;border:1px solid #ddd;}

答案 1 :(得分:0)

两个文件中的article table td, article table th都有相同的定义 - 一个带边框,第二个没有边框。可能你是在style.css之前加载custom.css。在style.css之后加载custom.css以覆盖样式并删除边框。

答案 2 :(得分:0)

我看到边界但其他人并没有让我怀疑是否存在缓存问题。我注意到该网站似乎正在使用WordPress。您是否已启用并启用了任何缓存插件?如果您对style.css进行了更改,那么它可能会从缓存中提供以前的版本。尝试使用您正在使用的任何插件清除缓存,然后刷新页面。