如何使用 CSS 將圖片縮小以使其響應式


要使影像響應式,您可以嘗試執行以下程式碼

示例

線上演示

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

更新於: 2020 年 6 月 24 日

369 次瀏覽

開始您的 職業生涯

透過完成課程獲得認證

開始
廣告