问题不是很短,但很容易理解。
以下是jsFiddle
我有两个嵌套表,如:
这是标记:
<table class="outer">
<tr>
<td></td>
<td>
<table class="inner">
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</td>
<td></td>
</tr>
</table>
<style>
table, tr, td {
border: 1px solid black;
border-collapse: collapse;
}
table {
width: 100%;
}
.outer {
height: 100px;
}
.inner {
background-color: #ccc;
height: 50px;
}
</style>
然后,我想在内表中添加负水平边距:
.inner {
margin: 0 -10%;
}
预期的输出是这样的:
但相反,我明白了:
可以通过将内部表放在div中来解决问题:
<!-- outer table -->
<div class="wrapper">
<table class="inner-wrapped">
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
</div>
<!-- outer table -->
<style>
.wrapper {
margin: 0 -10%;
}
.inner-wrapped {
background-color: rgb(0,200,0);
height: 50px;
}
</style>
如果我设置负水平边距-10px(之前我们使用的是百分比,而不是像素),那么另外该表只向左移动(就像第一种情况一样),它在宽度上有明显的减少:
.inner {
margin: 0 -10px;
}
为什么这两种情况都会发生?
有什么方法可以解决它?像我一样简单地使用包装器是一种好习惯,还是应该使用另一种更聪明的方式?
答案 0 :(得分:3)
如果主表是width:100%;
,它将一直展开,内表将采用最初的100%作为参考。只要没有内容成功,负利润就不会扩大。
它将起作用:https://jsfiddle.net/md2tx2d4/2/
.inner { margin:0 -10%; width:120%;}
或者如果你让它没有宽度而让它从内容中增长
table { }
td {width:200px;/* instead real content missing here */}