CSS에서 배경 모서리 둥글게 만들기
border-radius 속성은 테두리의 모서리뿐만 아니라
배경의 모서리도 둥글게 만듭니다:
<div id="elem"></div>
#elem {
border-radius: 20px;
width: 300px;
height: 100px;
background-color: #e4f1ed;
}
:
다음 예시와 동일한 페이지를 만들어 보세요:
border-radius 속성은 테두리의 모서리뿐만 아니라
배경의 모서리도 둥글게 만듭니다:
<div id="elem"></div>
#elem {
border-radius: 20px;
width: 300px;
height: 100px;
background-color: #e4f1ed;
}
:
다음 예시와 동일한 페이지를 만들어 보세요: