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

CSS로 원 이미지 만들기

<시간/>

CSS로 원 이미지를 만들려면 border-radius를 사용하세요. 재산.

<!DOCTYPE html>
<html>
   <head>
      <style>
         img {
            border-radius: 50%;
            border: 1px solid blue;
         }
      </style>
   </head>
   <body>
      <h2>Coding Ground</h2>
      <img src = "https://www.tutorialspoint.com/videotutorials/images/coding_ground_home.jpg" alt="Online Compiler" width="300" height="300">
   </body>
</html>