본문 바로가기
Web/HTML | CSS|JAVASCRIPT

border-radius 정리(CSS)

by 싸공 2020. 7. 27.

<!DOCTYPE html>
<html>
<head>
<style> 
.border1 {
    border-radius30px;
    background#8b2153;
    padding20px
    width300px;
    height100px;  
    color#fff;
    text-aligncenter;
}
.border2 {
    border-top-left-radius20px;
    border-top-right-radius20px;
    border-bottom-right-radius20px;
    border-bottom-left-radius20px;
    background#4db697;
    padding20px
    width300px;
    height100px;  
    color#fff;
    text-aligncenter;
}

</style>
</head>
<body>
<h1>The border-radius</h1>

<p class="border1">border-radius</p>
<p class="border2">border-radius</p>

</body>
</html>


border-top-left-radius

border-top-right-radius

border-bottom-left-radius

border-bottom-right-radius

위 4개의 축약형은 border-radius 이다




border-radius는 1~4개의 속성을 가진다




border-radius: 50px 10px 10px 0px;

border-radius : 좌측 상단, 우측 상단, 우측 하단, 좌측 하단;



border-radius: 10px 50px 10px;
border-radius : 좌측 상단, 우측 상단과 좌측 하단, 우측 상단;




border-radius: 10px 50px;

border-radius : 좌측 상단과 우측 하단, 좌측 하단과 우측 상단;




border-radius: 20px;
border-radius : 모든 방향;