1
0
Fork 0
firefox/testing/web-platform/tests/css/css-conditional/container-queries/scrollbar-container-units-inline.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

30 lines
802 B
HTML

<!DOCTYPE html>
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/10043#issuecomment-2165291421">
<link rel="match" href="scrollbar-container-units-inline-ref.html">
<style>
.container {
display: inline-block;
border: solid 3px cornflowerblue;
width: 100px;
height: 100px;
container-type: inline-size;
}
div > div {
box-sizing: border-box;
width: 100cqw;
height: 200px;
border: solid 10px orange;
}
</style>
<div class="container" style="overflow-y: scroll;">
<div></div>
</div>
<div class="container" style="overflow-y: auto;">
<div></div>
</div>
<div class="container" style="overflow-y: auto; scrollbar-gutter: stable;">
<div></div>
</div>
<div class="container" style="overflow-y: auto; scrollbar-gutter: stable;">
<div style="height: 50px;"></div>
</div>