background-clip
background-clip: border-box는 테두리까지 확장됨. -> 이게 기본
background-clip: padding-box는 테두리에는 확장 안되어 있음
background-clip: content-box는 내용부분만 확장이 됨
실습
background-clip: border-box (this is default):
The background extends behind the border.
background-clip: padding-box:
The background extends to the inside edge of the border.
background-clip: content-box:
The background extends to the edge of the content box.
'개발일지 > HTML&CSS' 카테고리의 다른 글
[17] Grid CSS (0) | 2024.11.23 |
---|---|
[16] Flexbox (flex-direction, flex-wrap, flex-flow, justify-content, align-items, align-content, align-self, flex item order, flex-grow, flex-shrink, flex-basis, flex) (0) | 2024.11.23 |
[14] animation CSS (0) | 2024.11.22 |
[13] Transform (0) | 2024.11.22 |
[12] Image, Input 요소 (0) | 2024.11.20 |