blob: 90acc141946bf601a3d2728a3ad5f8ec052f5a66 [file] [edit]
<style>
.container {
position: absolute;
}
.flex {
display: flex;
width: 400px;
}
.flex > div {
background-color: green;
width: 50px;
height: 50px;
}
</style>
PASS if green and blue boxes are next to each other.
<div class=container align="center">
<div class=flex>
<div></div>
<div style="background-color: blue"></div>
</div>
</div>