Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> CSS

สร้างภาพโค้งมนด้วย CSS


ในการสร้างภาพที่โค้งมนด้วย CSS ให้ใช้ border-radius ทรัพย์สิน

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         img {
            border-radius: 20px;
            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>