안녕과 새해 복 많이 받으세요 : D 그래서 여기에 문제가 있습니다 : 스프라이트가있는 페이지에 6 개의 열기구를 보여주고 싶습니다. 실제 스프라이트에는 6 개의 컬러 풍선이 있습니다. 코드와 결과를 볼 수 있습니다.스프라이트로 배경 위치를 설정하는 방법은 무엇입니까?
HTML :
<div class="hotairballoons">
<div class="ball-1"></div>
<div class="ball-2"></div>
<div class="ball-3"></div>
<div class="ball-4"></div>
<div class="ball-5"></div>
<div class="ball-6"></div>
</div>
CSS :
.hotairballoons > div[class^="ball-"] {
background: url(../img/sprites.png);
background-repeat: no-repeat;
width: 69px;
height: 110px;
}
.ball-1 {
background-position: 0px 0px;
}
.ball-2 {
background-position: -69px 0px;
}
.ball-3 {
background-position: -138px 0px;
}
.ball-4 {
background-position: 0px -110px;
}
.ball-5 {
background-position: -69px -110px;
}
.ball-6 {
background-position: -138px -110px;
}
결과 :
01 : 개발자 콘솔에서 보여줍니다 무엇
왜 가로 지르는가? 내가 도대체 뭘 잘못하고있는 겁니까?