我有一个带有div
内部的表格单元格。我希望div
溢出到表格单元格之外。我怎样才能做到这一点?需要明确的是,我不希望表格单元格使用div
. 下面的代码是我尝试过的,但它不起作用。
HTML:
<table>
<tr class="row">
<td class="cell">
<div class="overflow">Overlow outside of this cell</div>
</td>
</tr>
</table>
CSS:
.row {
height:24px;
overflow:visible;
}
.cell {
overflow:visible;
max-height:24px !important;
}
.overflow {
height:24px;
font-size:12px;
clear:both;
white-space: nowrap;
line-height:16px;
zoom:1;
text-align:left;
overflow:hidden;
}