Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-flexbox/flexbox_margin-auto.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>flexbox | margin: auto</title>
<link rel="match" href="flexbox_margin-auto-ref.html">
<style>
div {
background: blue;
margin: 1em 0;
border: 1px solid black;
height: 8em;
width: 32em;
position: relative;
display: flex;
}
span {
background: white;
margin: 1em auto;
width: 4em;
display: inline-block;
}
</style>
<div>
<span>one</span>
<span>two</span>
</div>