div {
background-color : #000000;
background-color: rgb(255,255,255);
background-color : rgba(0,0,255,1);
}
-요소의 불투명도를 설정한다
-기본값은 1이다 (initial :1) 원래 요소에 투명도가 없는 것
.floating-box{
opacity:1;
}
이런식으로 배경색을 설정하면 뒤에 내용들이 보이지 않는다
.floating-box{
opacity:0.5;
}
뒤에 있는 요소가 비춰지는 것을 확인 할수있다
-자식 요소들에는 영향 미치고 싶지않고 배경만 조절하고 싶다면
background: rgba(0,0,0,0.4); /*맨 끝자리를 이용하라*/
background-image:url(../../medial/domabam.jpg)
-이미지 반복을 제어할 수 있는 것
height: 300px;
background-imgage: url("")
실제 사진은 이렇게 작지만
기본적으로 이미지를 적용하면 박스 크기에 맞게 반복이된다
height: 300px;
background-imgage: url("")
background-repeat:repeat-x ;
x축으로 이미지가 반복되는것을 확인할 수 있다
background-position : 150px 200px;
background-position: top center
/*키워드로 작성하면 픽셀과 다르게 순서가 의미가 없다 */
background-origin : content-box;
콘텐츠 박스의 영역이 0,0의 기준이 되는 것
background-origin : padding-box;
background-origin : border-box;
-이미지가 찌그러지지 않는 한도 내에서 제일 크게 설정 , 비율값은 변경되지않음 빈공간을 만들고 싶지않다면 cover을 사용
background-size : 200px;
이렇게 하나만 지정하게되면 width 값에 맞춰서 지정이 된다 .
단축속성으로 색상, 이미지 , 원점, 크기 ,반복 등 여러 배경 스타일을 한번에 지정할 수 있다
background-color 속성은 마지막 레이어만 가질수 있다
bg-size값은 position 바로 뒤에만 위치할 수 있으며 /로 구분한다
background 같은 단축 속성은 초기값이 따로 지정되어있는데 다음과 같다
background-image: none
-background-position (en-US): 0% 0%
-background-size: auto auto
-background-repeat: repeat
-background-origin: padding-box
-background-clip: border-box
-background-attachment: scroll
-background-color: transparent
/ 사용 /
background: green;
/ 와 사용 /
background: url("test.jpg") repeat-y;
/ 와 사용 /
background: border-box red;
/ 단일 이미지, 중앙 배치 및 크기 조절 /
background: no-repeat center/80% url("../img/image.png");