Untitled
Anonymous
css
03/04/2023 7:06 PM
428 B
15
Indexable
.item {
position: relative;
width: 460px;
height: 300px;
border-radius: 32px;
overflow: hidden;
transition: .3s ease;
}
.item:hover {
transform: scale(1.1);
}
.item:hover ~ .item:not(:hover) {
filter: blur(10px);
background-color: red;
transform: scale(0.9);
}Editor is loading...