如何在不扩展单元格的情况下强制图像在表格单元格中溢出?
编辑:
抱歉,我会提供更多信息。这是表格:
<table class="content">
<col width="200px" />
<col width="560px" />
<col width="200px" />
<tr>
<td colspan="3" class="logo"></td>
</tr>
</table>
CSS:
.logo
{
height: 120px;
background: url('img/wallpaper.png') center;
}
我以为会有一个简单的解决方案...