<div id="justify">
<div style="background-color:coral;"></div>
<div style="background-color:lightblue;"></div>
</div>
#justify {
display: -webkit-flex;
-webkit-justify-content: space-around;
display: flex;
justify-content: space-around;
}
#justify div {
width: 100px;
height: 100px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.