아는 것이 좋은 것이다.

[CSS] 해상도별 스타일 css 적용 본문

CSS

[CSS] 해상도별 스타일 css 적용

start0 2014. 5. 26. 11:42
<!DOCTYPE HTML>

<html>

<head>


<style type="text/css">


            @media screen and (max-width: 400px) {

                body { background-color: red; }

                h1 { color: white; }

            }

            @media screen and (min-width: 401px) and (max-width: 500px) {

                body { background-color: green; }

                h1 { color: red; }

            }

            @media screen and (min-width: 801px) {

                body { background-color: blue; }

                h1 { color: yellow; }

            }

        </style>

</head>

   

<body>

    <h1>@media query test</h1>

</body>

</html>
Comments