如何在 WordPress 中删除 table 的边框
How to remove border from table in WordPress
WordPress 4.1 运行 Zonya 主题。
我想知道如何在 wordpress 页面中删除 table 的边框。
第 link 页:http://www.worldmarketingsummitgroup.org/partners/
在您的 style.css 文件底部添加以下内容
body:not(woocemmerce-page) .post-content table *
{
border:none!important;
}
这是因为当前 table 样式为每个单元格 (td) 提供了 1 像素的边框。
试试自定义 CSS:
table {border: 0px solid #CCC;
border-collapse: collapse;
}
td{
border: none;
}
WordPress 4.1 运行 Zonya 主题。
我想知道如何在 wordpress 页面中删除 table 的边框。 第 link 页:http://www.worldmarketingsummitgroup.org/partners/
在您的 style.css 文件底部添加以下内容
body:not(woocemmerce-page) .post-content table *
{
border:none!important;
}
这是因为当前 table 样式为每个单元格 (td) 提供了 1 像素的边框。
试试自定义 CSS:
table {border: 0px solid #CCC;
border-collapse: collapse;
}
td{
border: none;
}