mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
28 lines
555 B
HTML
28 lines
555 B
HTML
<!DOCTYPE html>
|
|
<title>flexbox | abspos atomic flexitems</title>
|
|
<link rel="author" href="http://opera.com" title="Opera Software">
|
|
<link rel="help" href="http://www.w3.org/TR/css-flexbox-1/#abspos-items">
|
|
<link rel="match" href="flexbox_absolute-atomic-ref.html">
|
|
<style>
|
|
body {margin: 0;}
|
|
body>div {
|
|
background: #ffcc00;
|
|
|
|
display: flex;
|
|
justify-content: space-around;
|
|
}
|
|
div div {
|
|
background: #3366cc;
|
|
margin: 20px;
|
|
}
|
|
#abs {
|
|
position: absolute;
|
|
top: -1000px;
|
|
}
|
|
</style>
|
|
|
|
<div>
|
|
<div>damer</div>
|
|
<div id="abs">damer</div>
|
|
<div>damer</div>
|
|
</div>
|