Das Problem ist, dass overflow-x: visible; overflow-y: scroll
eine unmögliche Kombination in CSS ist. Immer wenn visible
mit scroll
gepaart wird, wird es in konvertiert. Mit anderen Worten, diese sind äquivalent:
overflow-x: visible;
overflow-y: scroll;
overflow-x: auto;
overflow-y: scroll;
Es war ein schlechtes Urteil entschiedene für die Spezifikation, aber es gibt Workarounds.
Durch die Erweiterung der Elemente position: absolute
ändert ihre Größe den Container nicht, und sie werden nicht von overflow: hidden
abgeschnitten. Um sie richtig positioniert zu bekommen, wird ein extra div
mit position: relative
um den ganzen Behälter gewickelt.
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;
}
Fiddle:
https://jsfiddle.net/cyL6tc2k/2/
Kredite an den Trick gefunden: http://front-back.com/how-to-make-absolute-positioned-elements-overlap-their-overflow-hidden-parent
Mögliche du plicate von [CSS Überlauf-x: sichtbar; und Überlauf-y: versteckt; Scrollbar Problem verursachen] (http://stackoverflow.com/questions/6421966/css-overflow-x-visible-and-overflow-y-hidden-causing-scrollbar-issue) – andreas
Ist die X-Richtung soll bei .Messages scrollen schwebt über? – Luke
Nein. Die Nachricht sollte nach außen und über den Container gehen, wenn z. B. scroll sowohl in x als auch in y deaktiviert ist. – sdgfsdh