問題はoverflow-x: visible; overflow-y: scroll
はCSSで不可能組み合わせであるということです。 visible
がscroll
とペアになるたびにauto
に変換されます。言い換えれば、これらは同等です:
overflow-x: visible;
overflow-y: scroll;
overflow-x: auto;
overflow-y: scroll;
これは仕様には劣っていますが、回避策があります。
拡大要素position: absolute
を作成すると、そのサイズはコンテナを変更しないで、overflow: hidden
によって切り捨てられません。それらを正しく配置するには、div
とposition: relative
の余分なものをコンテナ全体に巻き付けます。
HTML:
<div class='container1'>
<div class='container2'>
<ul class='messages'>
<li><pre>Hello</pre></li>
<li>
<pre>This is a
really really really
really really long message.</pre>
</li>
<li><pre>World</pre></li>
</ul>
</div>
</div>
CSS:
* {
margin: 0;
padding: 0;
}
.container1 {
position: relative;
width: 200px;
}
.container2 {
background: #f0f;
width: 100%;
height: 100%;
overflow: scroll;
}
.messages {
overflow: visible;
list-style: none;
}
.messages li {
background: #ff0;
width: 100%;
height: 24px;
margin-top: 12px;
}
.messages li pre {
position: absolute;
display: inline-block;
box-sizing: border-box;
width: 100%;
max-height: 24px;
padding: 4px;
background: #0ff;
border-radius: 4px;
line-height: 16px;
overflow: hidden;
text-overflow: ellipsis;
width: auto;
min-width: 100%;
max-width: 100%;
transition: max-width 200ms ease-out, height 200ms ease-out;
}
.messages li pre:hover {
z-index: 1;
background: #00f;
max-width: 80vw;
max-height: 80vh;
transition: max-width 200ms ease-in, max-height 200ms ease-in;
}
フィドル:ここで見つけるトリックへ
https://jsfiddle.net/cyL6tc2k/2/
クレジット:http://front-back.com/how-to-make-absolute-positioned-elements-overlap-their-overflow-hidden-parent
可能なデュ[CSS overflow-x:visible; overflow-y:hidden。スクロールバーの問題を引き起こす](http://stackoverflow.com/questions/6421966/css-overflow-x-visible-and-overflow-y-hidden-causing-scrollbar-issue) – andreas
.messages終わった? – Luke
いいえ。xとyの両方でスクロールが無効になっている場合と同様に、メッセージはコンテナの外側と外側に移動する必要があります。 – sdgfsdh