(编辑:解决。我在边界崩溃的正确轨道上,但我不得不使用ctrl + f5来查看它)
尝试使用border-collapse和border-spacing来删除它们,但它不起作用。
代码:
<main>
<div class="adminr1">
<section class="adminc1">
<table class="adminResults">
<thead>
<td>cell</td>
<td>cell</td>
</thead>
<tr>
<td>cell</td>
<td>cell</td>
</tr>
</table>
</section>
</div>
</main>
CSS:
*
{
margin: 0;
padding: 0;
font-size: small;
font-family: Roboto;
vertical-align: middle;
text-decoration: none;
}
main
{
font-size: 0;
line-height: 1.5;
text-align: center;
margin: 0 auto;
width: 86%;
min-width: 1000px;
}
section
{
border: 1px solid #BBB;
background: #FFF;
border-radius: 7px;
display: inline-block;
overflow: hidden;
}
.adminr1
{
display: inline-block;
width: 66%;
height: 700px;
margin-right: 5px;
font-size: 0;
margin-bottom: 10px;
}
.adminc1
{
width: 100%;
height: 100%;
font-size: 0;
}
/*Table Styles:*/
.adminResults
{
width: 100%;
border: 1px solid #000;
}
.adminResults thead
{
border: 1px solid #000;
}
.adminResults tr td
{
border-left: 1px solid #000;
border-right: 1px solid #000;
}
到目前为止,这是我唯一使用表格的页面,所以我在其他任何地方都没有可以阻止或覆盖我想要添加的属性的表格相关样式,也没有任何边框 - 其他元素的相关文件通常也适用于同样的事情。
我显然错过了一些东西,因为这似乎应该是一件非常容易的事情。
答案 0 :(得分:1)
答案 1 :(得分:0)
将border-collapse:collapse;
添加到表格中。
.adminResults{width:100%;border:1px solid #000;border-collapse: collapse;}
以下是一个例子:
答案 2 :(得分:0)
您是否尝试在表格中添加border="0" cellpadding="0" cellspacing="0"
?像这样:
<table class="adminResults" border="0" cellpadding="0" cellspacing="0">
答案 3 :(得分:0)
在表格上设置border-spacing: 0px;
和border-collapsing: seperate;
。
.adminResults {
width: 100%;
border: 1px solid #000;
border-spacing: 0px;;
border-collapse: seperate;
}
查看此更新:Fiddle Demo