1
0
Fork 0
firefox/testing/web-platform/tests/css/css-flexbox/flexbox_margin-auto-overflow-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

32 lines
501 B
HTML

<!DOCTYPE html>
<title>flexbox | margin: auto in overflow</title>
<link rel="author" href="http://opera.com" title="Opera Software">
<style>
div {
background: blue;
margin: 1em 0;
border: 1px solid black;
height: 8em;
width: 32em;
position: relative;
}
span {
background: white;
margin: 0;
width: 30em;
height: 6em;
position: absolute;
left: 0;
top: 1em;
display: inline-block;
}
span+span {
background: yellow;
left: 30em;
}
</style>
<div>
<span>one</span>
<span>two</span>
</div>