티스토리 뷰

코드

<!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>layout06</title>
    <style>
        *{margin: 0; padding: 0;}
        #wrap {font-size: 30px; color: #fff; text-align: center; text-transform: uppercase;}
        #header { height: 140px; line-height: 140px; background-color: #ffe1e4;}
        #banner { height: 450px; line-height: 450px; background-color: #fbd6e3;}
        #content{ height: 950px; line-height: 950px; background-color: #ead5ee;}
        #footer { height: 220px; line-height: 220px; background-color: #d6ebfd;}
        .container { width: 1100px; margin: 0 auto; height: inherit; background-color: rgba(0, 0, 0, 0.3); }
    </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>
댓글
© 2018 webstoryboy