gpt4 book ai didi

html - 如何在不扩展表格单元格高度的情况下使表格单元格的内容垂直溢出?

转载 作者:技术小花猫 更新时间:2023-10-29 12:52:50 25 4
gpt4 key购买 nike

我有一个表格单元格,里面有一个 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;
}

最佳答案

如果我没猜错,this可能有帮助:

.row {
height: 24px;
overflow: visible;
}

.cell {
overflow: visible;
max-height: 24px !important;
border: 1px solid #cccccc;
width: 10px;
}

.overflow {
height: 24px;
font-size: 12px;
line-height: 16px;
position: absolute;
}
<table>
<tr class="row">
<td class="cell">
<div class="overflow">Overlow outside of this cell</div>
</td>
</tr>
</table>

关于html - 如何在不扩展表格单元格高度的情况下使表格单元格的内容垂直溢出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15621712/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com