覆盖HTML表格边框属性

时间:2014-10-31 09:00:09

标签: html css sharepoint inline

我有一个包含属性" Border"设置为0所以无论我在css中设置什么,表格都不显示边框

请注意,我无法内联更改表格边框属性。我无法访问该文件。

<table  class="ms-listviewtable" handledeleteinit="true" border="0" style="">

如何覆盖边框?

2 个答案:

答案 0 :(得分:1)

我找到的唯一方法是在th和td中添加一个边框,但为了获得相同的预期结果,我必须只设置一个边框。

否则我会得到一个大胆的边界。

答案 1 :(得分:1)

以下是Temala的回答示例:

table {
    border-collapse: collapse;
    border: 1px solid red;
    border-bottom: 0;
}
td, th {
     border-right: 1px solid red;
     border-bottom: 1px solid red;
}