How to algin the items of the flexible element?
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>How to algin the items of the flexible element</title>
<style type="text/css">
#xyz {
width: 80px;
height: 250px;
border: 1px solid #3300FF;
display: flex;
flex-flow: row wrap;
align-content: space-around;
}
#xyz div {
width: 80px;
height: 80px;
}
</style>
</head>
<body>
<div id="xyz">
<div style="background-color: #CCCC66;"></div>
<div style="background-color: #CC66CC;"></div>
<div style="background-color: #FF99CC;"></div>
</div>
</body>
</html>