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

CSS3를 사용한 미디어 쿼리

<시간/>

미디어 쿼리는 모바일, 데스크톱 등과 같은 다양한 크기의 기기에 대한 다양한 스타일 규칙에 대한 것입니다.

CSS3로 미디어 쿼리를 구현하기 위해 다음 코드를 실행할 수 있습니다 -

예시

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