Computer >> Computer tutorials >  >> Programming >> CSS

How to scale down an image with CSS to make it responsive


To make an image responsive, you can try to run the following code:

Example

<!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>