1
2
3
4
5
6
7
8
9
.box{
transition: all 0.2s linear 0s;
bottom: 0px;
}
.box:hover{
box-shadow:0px 0px 8px #ccc;
position: relative;
bottom: 4px;
}