728x90
300x250
SMALL
background-origin
배경 이미지를 위치를 지정할 기준점을 지정해주는 속성
background-origin : border-box
박스 모델의 테두리를 기준
.bg {
background: url("../img/bike.jpg");
color: transparent;
border: 10px dashed #000;
padding: 30px;
font-size: 50px;
font-weight: 600;
background-origin: border-box;
background-repeat: no-repeat;
}
background-origin : padding-box
박스 모델의 테두리를 뺀 패딩 시작 지점이 기준
.bg {
background: url("../img/bike.jpg");
color: transparent;
border: 10px dashed #000;
padding: 30px;
font-size: 50px;
font-weight: 600;
background-origin: padding-box;
background-repeat: no-repeat;
}
background-origin : content-box
박스 모델에서 컨텐츠 부분이 기준
.bg {
background: url("../img/bike.jpg");
color: transparent;
border: 10px dashed #000;
padding: 30px;
font-size: 50px;
font-weight: 600;
background-origin: content-box;
background-repeat: no-repeat;
}
컨텐츠 영역부터 bg를 위치
호환성 보기
728x90
반응형
LIST
'Front-end > CSS' 카테고리의 다른 글
속성 선택자 (속성 ~=값,속성 |=값, 속성 ^=값, 속성 $=값, 속성 *=값) (0) | 2021.12.21 |
---|---|
가상 클래스 :link, :visited, :hover, :active, :focus (0) | 2021.12.20 |
인접 형제 선택자 + 모든형제 선택자 ~ 차이 (0) | 2021.12.18 |
Animate.css 사용법 (0) | 2021.12.07 |
background-clip 속성 (0) | 2021.12.05 |
댓글