使用 CSS max-width 属性调整图片大小


你可以尝试使用以下代码来实现图片响应式 max-width 属性

示例

在线演示

<!DOCTYPE html>
<html>
   <head>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1.0">
      <style>
         img {
            max-width: 100%;
            height: auto;
         }
      </style>
   </head>
   <body>
      <p>To check the effect, you need to resize the browser.</p>
      <img src = "https://tutorialspoint.com/python/images/python-data-science.jpg" alt = "Python Data Science" width = "400" height = "300">
   </body>
</html>

更新于: 2020-06-25

325 人观看

开启你的 职业生涯

完成课程获得认证

开始学习
广告