1
0
Fork 0
firefox/testing/web-platform/tests/compat/webkit-box-rtl-flex-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

24 lines
347 B
HTML

<!DOCTYPE html>
<style>
#flexbox {
width: 500px;
display: flex;
direction: rtl;
}
#redbox {
background: red;
flex: 1;
}
#greenbox {
background: green;
flex: 1;
}
</style>
<p>There should be a green box followed by a red box, both on the same line.
<div id="flexbox">
<div id="redbox">A</div>
<div id="greenbox">B</div>
</div>