Compass에서 만든 스프라이트 파일이 있습니다. 그리고 그 스프라이트 파일에 이미지가 있습니다. 그리고 background: url()
속성이있는 요소가 있습니다. Sprite 파일을 참조 할 수있는 컴퍼스의 특별한 도우미가 있습니까? url()
? 여기 Compass에서 백그라운드로 만든 스프라이트 파일 자체에 대한 링크를 만드는 방법 : url() 속성?
a {
text-transform: uppercase;
color: #FFF;
}
a:before {
content: '';
display: block;
position: absolute;
height: 20px;
width: 24px;
left: 9px;
top: 18px;
background: url("HOW TO GET SPRITE FILE HERE?") no-repeat scroll -55px 0 transparent;
}
Compass 스프라이트는 [이 튜토리얼] (http://compass-style.org/help/tutorials/spriting/)에 설명되어 있습니다. – LeBen