td内div的垂直溢出

时间:2013-07-01 13:46:42

标签: html css css3

我有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

3 个答案:

答案 0 :(得分:1)

而不是

height: 40px;

使用

min-height: 40px;

在你的溢出div!

这样,您可以为div定义最小高度,但不能定义最大高度。

DEMO:http://cssdesk.com/dYYJ3

答案 1 :(得分:0)

设置

overflow-y: auto;

代替

overflow-y:visible

css

DEMO --> http://cssdesk.com/dKstz

答案 2 :(得分:-1)

尝试在你的css中将overflow-y设置为“auto”