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_justifycontent-spacearound-only.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>flexbox | justify-content: space-around | single item</title>
<link rel="help"
<link rel="match" href="flexbox_justifycontent-spacearound-only-ref.html">
<style>
div {
background: blue;
margin: 1em 0;
border: 1px solid black;
height: 8em;
width: 30em;
display: flex;
justify-content: space-around;
}
span {
background: white;
margin: 1em;
width: 5em;
max-width: 6em;
display: inline-block;
flex: 1 0 0%;
}
</style>
<div>
<span>one</span>
</div>