* {
box-sizing: border-box;
}
.content {
padding: 10px 20px;
}
.list-wraper {
position: relative;
padding: 0px;
height: 72px;
}
.list-item {
background-color: #fff;
position: absolute;
padding: 0;
width: 100%;
transition: all 200ms ease;
-moz-transition: all 200ms ease;
-webkit-transition: all 200ms ease;
-o-transition: all 200ms ease;
border: 1px solid #ccc;
box-sizing: content-box;
}
.list-item:hover {
z-index: 1;
padding: 4px;
margin: -4px;
}
* {
box-sizing: border-box;
}
.content {
padding: 10px 20px;
}
.list-wraper {
height: 100px;
position: relative;
border: 1px solid #ccc;
margin-bottom: 10px;
width: 300px;
transition: 0.2s;
}
.list-item {
position: relative;
background-color: #fff;
height: 100%;
width: 100%;
}
.list-wraper:hover{
transform: scale(1.3, 1.6);
z-index:100;
}