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
CSSでoverflow-yを「auto」に設定してみてください