<!DOCTYPE html>
<html>
<head>
<title>The flex-flow property in CSS</title>
<style type="text/css">
#content {
width: 100px;
height: 100px;
border: 1px solid green;
display: flex;
flex-flow: wrap-reverse;
background-color: pink;
}
.box {
width: 50px;
height: 50px;
}
.box1 {
width: 50px;
height: 50px;
}
</style>
</head>
<body>
<h4>This is a wrap-reverse</h4>
<div id="content">
<div class="box" style="background-color:red;">A</div>
<div class="box" style="background-color:lightblue;">B</div>
<div class="box" style="background-color:yellow;">C</div>
</div>
</body>
</html>