Align Content Properties

How to align the items of the flexible element?

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>How to align the items of the flexible element</title>
	<style type="text/css">
		#xyz {
			 80px;
			height: 250px;
			border: 1px solid #3300FF;
			display: flex;
			flex-flow: row wrap;
			align-content: space-around;
		}
		#xyz div {
			  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>
原文地址:https://www.cnblogs.com/PrimerPlus/p/12768233.html