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>