我有td
,其中包含更长的文字。我已将文本放在div
内,如下所示
<table>
<tr>
<td>
<div class=overflow>This is my text that is a little long.</div>
</td>
</tr>
</table>
现在我希望overflow-y:visible
拥有div
。但我不能让它发挥作用。
以下是EXAMPLE
答案 0 :(得分:1)
而不是
height: 40px;
使用
min-height: 40px;
在你的溢出div!
这样,您可以为div定义最小高度,但不能定义最大高度。
答案 1 :(得分:0)
答案 2 :(得分:-1)
尝试在你的css中将overflow-y设置为“auto”