Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<title>flexbox | flex-flow: column wrap-reverse</title>
<style>
div {
background: blue;
margin: 1em 0;
border: 1px solid black;
width: 20em;
height: 8em;
}
span {
background: white;
margin: 1em;
width: 8em;
display: block;
float: left;
}
</style>
<div>
<span>three</span>
<span>one</span>
<span>four</span>
<span>two</span>
</div>