[Layout] Layout - 6

웹/Layout|2019. 1. 5. 18:14

Layout

Layout06

결과물



코드

<!DOCTYPE html>
<html lang="ko-KR">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Layout06</title>

    <style>
        body {
            margin: 0;
            padding: 0;
        }

        #wrap {
            width: 100%;
            height: 1000px;
            color: #fff; 
            font-size: 40px; 
            text-align: center;
        }

        #header {
            width: 100%;
            height: 100px;
            line-height: 100px;
            background: #ffe1e4;
        }

        #banner {
            width: 100%;
            height: 300px;
            line-height: 300px;
            background: #fbd6e3;
        }

        #content {
            width: 100%;
            height: 500px;
            line-height: 500px;
            background: #ead5ee;
        }

        #footer {
            width: 100%;
            height: 100px;
            line-height: 100px;
            background: #d6ebfd;
        }

        .container {
            width: 70%;
            height: inherit;
            margin: 0 auto;
            background: rgba(0,0,0,0.1);
        }
    </style>
</head>

<body>
    <div id="wrap">
        <div id="header">
            <div class="container">header</div>
        </div>
        <div id="banner">
            <div class="container">banner</div>
        </div>
        <div id="content">
            <div class="container">content</div>
        </div>
        <div id="footer">
            <div class="container">footer</div>
        </div>
    </div>
</body>
</html>


' > Layout' 카테고리의 다른 글

[Layout] Layout - 7  (0) 2019.01.05
[Layout] Layout - 5  (0) 2019.01.05
[Layout] Layout - 4  (0) 2019.01.05
[Layout] Layout - 3  (0) 2019.01.05
[Layout] Layout - 2  (0) 2019.01.05

댓글()