1
0
Fork 0
firefox/testing/web-platform/tests/css/css-conditional/container-queries/container-units-sharing-via-rule-node-ref.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

22 lines
400 B
HTML

<!doctype html>
<meta charset="utf-8">
<style>
.test {
border: 1px solid;
max-width: max-content;
}
span {
display: block;
background-color: green;
}
</style>
<div class="test">
<span style="width: 40px; height: 40px"></span>
</div>
<div class="test">
<span style="width: 100px; height: 100px"></span>
</div>
<div class="test">
<span style="width: 200px; height: 200px"></span>
</div>