Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

CSS border-bottom-right-radius 속성


오른쪽 하단 모서리의 테두리를 설정하려면 border-bottom-right-radius 속성을 사용하십시오. border-bottom-right-radius 속성을 구현하기 위해 다음 코드를 실행할 수 있습니다 -

예시

<html>
   <head>

      <style>
         #rcorner {
            border-radius: 25px;
            border-bottom-right-radius: 45px;
            background: orange;
            padding: 20px;
            width: 200px;
            height: 150px;
         }
      </style>

   </head>
   <body>
      <p id="rcorner">Rounded corners!</p>
   </body>
</html>