Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个td较长的文本。我已将文本放入div如下
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但我不能让它工作。
overflow-y:visible
这是示例
代替
height: 40px;
利用
min-height: 40px;
在你的溢出 div 中!
这样,您可以定义 div 的最小高度,但不是最大高度。
演示:http ://cssdesk.com/dYYJ3
放
overflow-y: auto;
反而
给你的css
css
演示 --> http://cssdesk.com/dKstz
-->
尝试在您的 CSS 中将溢出-y 设置为“自动”