Computer >> 컴퓨터 >  >> 프로그램 작성 >> CSS

다양한 크기의 장치에 대한 다양한 CSS 스타일 규칙에 대한 미디어 쿼리 설정


다양한 CSS 스타일 규칙에 대한 미디어 쿼리를 설정하려면 다음 코드를 실행해 보세요.

예시

<html>
   <head>
      <style>
         body {
            background-color: lightpink;
         }
         @media screen and (max-width: 420px) {
            body {
               background-color: lightblue;
            }
         }
      </style>
   </head>
   <body>
      <p>If screen size is less than 420px, then it will show lightblue color, or else it will show light pink color</p>
   </body>
</html>