0
A
답변
2
호버 설정시 background-size
으로 변경하십시오. scale(1.1)
을 모방하려면 110%
을 사용하십시오.
div {
width: 560px;
height: 400px;
background: url('http://kenwheeler.github.io/slick/img/fonz1.png') center center no-repeat;
}
div:hover {
background-size: 110%;
}
<div></div>