CSS

[ CSS ] padding 부분과 content부분 background-color 구분하기

yebeen 2024. 8. 26. 11:19

문제

backgroun-color를 설정할 때 padding까지 배경색이 먹는 문제 발생

 

 

해결책

다음과 같은 속성 사용하기

 background-clip: padding-box;

 

 

추가정보

background-clip의 값은 padding-box, border-box, content-box가 있다.

- padding-box : 배경색이 padding+content에 영향을 미친다.

- border-box : 배경색이 border+padding+content에 영향을 미친다.

- content-box : 배경색이 content에 영향을 미친다.

 

 

 

 

[ 참고 ] 

https://www.w3schools.com/cssref/css3_pr_background-clip.php

 

W3Schools.com

W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

www.w3schools.com