본문 바로가기

css

12장 예제 - 미디어 쿼리 화면 학인하기

<!DOCTYPE html>
<html lang="ko">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>미디어 쿼리 사용하기 </title>
  <style>
    body {
      background:url(images/bg0.jpg) no-repeat fixed; /*기본 배경 이미지 지정*/
      background-size:cover; /*배경 이미지로 요소를 모두 덮도록 이미지 확대 및 축소*/
    }

    @media screen and (max-width:1024px) {
      /*가로가 1024px 이하이면 bg1.jpg 지정 */
      body {
        background:url("images/bg1.jpg") no-repeat fixed;
        background-size:cover;
      }
    }

    @media screen and (max-width:768px)
    {
      /*가로가 768px 이하면 bg2.jpg 지정*/
      body {
        background:url("images/bg2.jpg") no-repeat fixed;
        background-size:cover;
      }
    }

    @media screen and (max-width:320px)
    {
      /*가로가 320px 이하면 bg3.jpg 지정*/
      body {
        background:url("images/bg3.jpg") no-repeat fixed;
        background-size:cover;
      }
    }
  </style>
</head>
<body>
 
</body>
</html>