>웹 프론트엔드 >CSS 튜토리얼 >CSS 테두리-하단-오른쪽-반경

CSS 테두리-하단-오른쪽-반경

王林
王林앞으로
2023-09-16 11:37:021297검색

CSS border-bottom-right-radius 属性

border-bottom-right-radius 속성을 사용하여 오른쪽 하단에 테두리를 설정하세요. 다음 코드를 실행하여 border-bottom-right-radius 속성을 구현할 수 있습니다. −

Example

Live Demo

<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>

위 내용은 CSS 테두리-하단-오른쪽-반경의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제