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;
반응형
'CSS' 카테고리의 다른 글
[CSS] first-child, first-of-type 차이 (0) | 2015.12.15 |
---|---|
[CSS][jQuery UI] progressbar 애니메이션 적용 (0) | 2015.10.07 |
[CSS] keyframe animation - 연속으로 이미지 바뀌는 애니메이션 효과 (5) | 2015.04.06 |
[CSS] Font Awesome - 벡터 폰트 아이콘 (0) | 2015.04.06 |
[CSS] border 투명도(opacity) 적용하기 (0) | 2015.03.27 |