DOCTYPE html> 배경색 /* background-color: #008000; background-color: rgb(0, 128, 0); background-color: green; 배경색 적용 범위를 조절하는 background-clip 속성 background-clip 속성값 border-box - 박스 모델에서 테두리까지 적용. 기본값. padding-box - 박스 모델에서 테두리를 뺀 패딩 범위까지 적용 content-box - 박스 모델에서 콘텐츠 부분에만 적용 */ .desc { border: 5px dotted #222; background-color: #ffd9a0; width: 350px; padding: 20px; margin-right: 20px; float: left; }..