[CSS] background 속성

김연빈·2023년 3월 17일
0
  • 각각 지정
background-color: #000;
background-image:url(img/tree.png);
background-repeat: no-repeat;
background-position:right bottom; /* 100% 100% */
background-size:100% 100%;
background-attachment:fixed;
  • 한꺼번에 지정
background: bg-color bg-image position bg-size bg-repeat bg-origin bg-clip bg-attachment 
background: url(img/tree.png) 100% 100% 100% 100% no-repeat fixed #000;	

size는 꼭 position 뒤에만 와야함.
다른 속성들은 순서 안 지켜도 됨.
한꺼번에 지정할 때 calc(), center 이런 값이 들어가면 간혹 속성이 안 먹는데, 이런 경우 각각 지정해야 함.

profile
web publisher

0개의 댓글