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

วิธีย่อขนาดรูปภาพด้วย CSS เพื่อให้ตอบสนอง


หากต้องการให้รูปภาพตอบสนอง คุณสามารถลองเรียกใช้โค้ดต่อไปนี้:

ตัวอย่าง

<!DOCTYPE html>
<html>
   <head>
      <style>
         img {
            max-width: 100%;
            height: auto;
         }
      </style>
   </head>
   <body>
      <img src = "https://www.tutorialspoint.com/videotutorials/images/coding_ground_home.jpg" alt = "Online Compiler" width = "300" height = "300">
   </body>
</html>