관리 메뉴

moozi

7/20 media02.html 본문

TIS_2016/HTML5_3기

7/20 media02.html

moozi 2016. 7. 20. 12:18

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>미디어쿼리 연습</title>

    <style>

        *{margin: 0;padding:0;}

        

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

            #header{

                height:170px;

                background-color: dodgerblue;

                color:white;

            }

            #article1{

                width:100%;

                background-color: lightskyblue;

                color:white;

                height:250px;

                float:left;

            }

            #section{

                width:100%;

                height:300px;

                float:left;

            }

            #article2{

                width:100%;

                height: 200px;

                background-color: cadetblue;

                color:white;

                float:left;

                text-align: center;

            }

            #footer{

                clear:both;

                height: 50px;

                line-height: 50px;

                text-align: center;

                background-color: azure;

            }

        }

        @media screen and (min-width:768px) and (max-width:959px){

            #header{

                height:170px;

                background-color: dodgerblue;

                color:white;

            }

            #article1{

                width:50%;

                background-color: lightskyblue;

                color:white;

                height:500px;

                float:left;

            }

            #section{

                width:50%;

                height:500px;

                float:left;

            }

            #article2{

                width:100%;

                height: 200px;

                background-color: cadetblue;

                color:white;

                float:left;

                text-align: center;

            }

            #footer{

                clear:both;

                height: 50px;

                line-height: 50px;

                text-align: center;

                background-color: azure;

            }

        }

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

            #header{

                height:170px;

                background-color: dodgerblue;

                color:white;

            }

            #article1{

                width:15%;

                background-color: lightskyblue;

                color:white;

                height:500px;

                float:left;

            }

            #section{

                width:70%;

                height:500px;

                float:left;

            }

            #article2{

                width:15%;

                height: 500px;

                background-color: lightskyblue;

                color:white;

                float:left;

            }

            #footer{

                clear:both;

                height: 50px;

                line-height: 50px;

                text-align: center;

                background-color: azure;

            }

        }

    </style>

</head>

<body>

    <div id="header">

        <h1>TIS정보기술교육센터</h1>

    </div>

    <div id="article1">

       <h3>개설과정</h3>

        <ul>

            <li>웹표준UI/UX</li>

            <li>Java</li>

            <li>안드로이드</li>

        </ul>

    </div>

    <div id="section">

        <h2>TIS정보기술교육센터 소개</h2>

        <p>TIS정보기술교육센터에서는 정부지원IT전문교육과정을 운영하고 있습니다.</p>

    </div>

    <div id="article2">

        <ul>

            <li>개강일정</li>

            <li>FAQ</li>

            <li>Board</li>

        </ul>

    </div>

    <div id="footer">

        <h5>&copy;TIS정보기술교육센터</h5>

    </div>

</body>

</html>

'TIS_2016 > HTML5_3기' 카테고리의 다른 글

7/20 수업 예제 파일  (0) 2016.07.20
html연습문제05  (0) 2016.07.20
html연습문제04  (0) 2016.07.19
7/19 수업 예제 파일  (0) 2016.07.19
html연습문제03  (0) 2016.07.18
Comments