1
0
Fork 0
firefox/testing/web-platform/tests/css/css-writing-modes/inline-box-orthogonal-child-with-margins-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

25 lines
490 B
HTML

<!DOCTYPE html>
<style>
.container {
border: 1px dashed blue;
height: 200px;
width: 560px;
box-sizing: content-box;
}
.container > div {
float: left;
width: 40px;
margin: 10px 20px 30px 40px;
border-width: 20px 30px 40px 50px;
padding: 30px 40px 50px 60px;
border-style: dotted;
}
.container > div:nth-child(1) { background: yellow; }
.container > div:nth-child(2) { background: purple; }
</style>
<div class="container">
<div></div>
<div></div>
</div>