I would like to have item-2 centered, I cannot get align-self to work. Please what am I doing wrong? I have tried all options of align-self but it doesn't seem to register.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Flex Align</title>
<style>
#container {
background: #555 ;
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
height: 600px;
align-items: baseline;
align-content: space-between;
}
.item-2 {
align-self: center;
}
.item {
background: #f4f4f4;
border: #ccc solid 1px;
padding: 1rem;
text-align: center;
margin: 0.5rem;
flex-basis: 200px;
}
</style>
</head>
<body>
<div id="container">
<div class="item item-1"><h3>Item 1</h3></div>
<div class="item item-2"><h3>Item 2</h3></div>
<div class="item item-3"><h3>Item 3</h3></div>
</div>
</body>
</html>