[Layout] Layout - 1
웹/Layout2019. 1. 5. 18:05
Layout
Layout01
결과물
코드
<!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>Layout01</title> <style> body { background: #c8e6c9; } #wrap { width: 800px; height: 900px; margin: 0 auto; color: #fff; font-size: 40px; text-align: center; } #header { width: 100%; height: 100px; line-height: 100px; background: #2e7d32 } #nav { width: 100%; height: 100px; line-height: 100px; background: #388e3c; } #side{ float: left; width: 30%; height: 600px; line-height: 500px; background: #43a047; } #contents{ float:left; width: 70%; height: 600px; line-height: 500px; background: #4caf50; } #footer{ float: left; width: 100%; height: 100px; line-height: 100px; background: #66bb6a; } </style> </head> <body> <div id="wrap"> <div id="header">HEADER</div> <div id="nav">NAV</div> <div id="side">SIDE</div> <div id="contents">CONTENTS</div> <div id="footer">FOOTER</div> </div> </body> </html>
'웹 > Layout' 카테고리의 다른 글
[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 |
[Layout] Layout (0) | 2019.01.05 |
댓글()