
Код: Выделить всё
.container {
border: 2px solid grey;
display: flex;
height: 500px;
width: 500px;
flex-direction: row;
justify-content: center;
align-content: flex-start;
align-items: flex-start;
flex-wrap: wrap;
}
.box:hover {
align-content: center;
}
.box {
height: 100px;
width: 100px;
border: 2px solid black;
margin: 15px;
}
#box1 {
background-color: red;
}
#box2 {
background-color: blue;
}
#box3 {
background-color: orange;
}
#box4 {
background-color: aqua;
}
#box5 {
background-color: purple;
}< /code>
BOX1
BOX2
BOX3
BOX4
BOX5
Подробнее здесь: https://stackoverflow.com/questions/797 ... unhovering