CSS
[CSS] background 좌표값 쉽게 얻어주는 사이트
힘없는염소
2015. 4. 10. 16:22
CSS Sprite 기법
css background 속성
background-color: #fff;
background-image: url(bg.png);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: 50px 50px;
위 속성들을 아래와 같이 한줄로 작성 (속기법)
background: #fff url(bg.png) no-repeat fixed 50px 50px;
반응형