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

CSS 테두리 반경 속성


border-radius 속성을 사용하여 4개의 border-radius 속성을 설정합니다. 다음 코드를 실행하여 border-radius 속성을 구현할 수 있습니다 -

예시

<html>
   <head>
      <style>
         #rcorner {
            border-radius: 25px;
            background: #8AC007;
            padding: 20px;
            width: 200px;
            height: 150px;
         }
      </style>
   </head>
   <body>
      <p id="rcorner">Rounded corners!</p>
   </body>
</html>