2023년 웹디자인 기능사 레이아웃 : E-2
소개
안녕하세요! 웹스토리보이입니다. 이번에는 E-2 유형을 작업해보겠습니다. E-1 유형과 동일하지만 차이점이 있다면 높이값이 임의지정입니다. E-1 유형은 화면 높이 값에 딱 맞추었다면, E-2 유형은 높이 값을 임의로 지정하기 때문에 딱 맞출 필요는 없습니다. 그럼 시작해볼까요? 🥹
1. 기본 구조 만들기
웹 문서 만들기 : VSCODE를 실행하고 E-2.html
파일을 만들겠습니다.
!
를 치고 tab
버튼을 누르면 다음과 같이 나타납니다.
lang는 ko로 변경하고 title은 웹디자인기능사 레이아웃 E-2으로 변경해주겠습니다.
상단에 디자인 보기 버튼을 누르면 전체적인 레이아웃을 한 눈에 볼 수 있으니 참고해주세요!
<!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>웹디자인기능사 레이아웃 E-2</title>
</head>
<body>
</body>
</html>
전체적인 구조는 E-1 유형과 동일하게 main
, footer
로 2단 구조로 만들겠습니다.
main의 높이 값은 임의로 750px
로 설정하고, footer의 높이 값은 100px
로 설정했습니다.
<body>
<div id="wrap">
<main id="main"></main>
<footer id="footer"></footer>
</div>
</body>
<style>
* {
margin: 0;
padding: 0;
}
#wrap {
width: 100%;
}
#main {
width: 100%;
height: 750px;
background-color: #efefef;
}
#footer {
width: 100%;
height: 100px;
background-color: #e3e3e3;
}
</style>
메인 콘텐츠는 3개의 영역으로 이루어져 있으며, header
, contents
, slider
로 구성하였습니다.
여기서 헤더와 콘텐츠는 고정값이고, 슬라이드는 유동적이기 때문에 width: calc(100% - 600px);
이렇게 설정해야 반응형이 가능합니다.
이렇게 하면 화면의 크기를 변경해도 화면에 맞게 변하는 모습을 볼 수 있습니다.
<div id="wrap">
<main id="main">
<header id="header"></header>
<section id="contents"></section>
<article id="slider"></article>
</main>
<footer id="footer"></footer>
</div>
* {
margin: 0;
padding: 0;
}
#wrap {
width: 100%;
}
#main {
width: 100%;
display: flex;
}
#header {
width: 200px;
height: 750px;
background-color: #efefef;
}
#contents {
width: 400px;
height: 750px;
background-color: #e3e3e3;
}
#slider {
width: calc(100% - 600px);
height: 750px;
background-color: #d9d9d9;
}
#footer {
width: 100%;
height: 100px;
background-color: #d1d1d1;
}
2. 각 섹션 작업하기
메인 박스 안에 헤더 영역을 작업하겠습니다. 헤더 영역은 로고와 메뉴 영역으로 나누어져 있습니다.
<header id="header">
<h1></h1>
<nav></nav>
</header>
<!-- //header -->
#header {
width: 200px;
}
#header h1 {
width: 100%;
height: 100px;
background-color: #e3e3e3;
}
#header nav {
width: 100%;
height: 650px;
background-color: #d9d9d9;
}
컨텐츠 영역은 공지사항, 갤러리, 링크 영역으로 3개의 영역으로 이루어져 있습니다. 자식 박스의 높이 값이 설정되어 있기 때문에 부모 박스 영역에는 높이 값을 줄 필요가 없습니다.
<section id="contents">
<div class="notice"></div>
<div class="gallery"></div>
<div class="link"></div>
</section>
<!-- //contents -->
#contents {
width: 400px;
}
#contents .notice {
width: 100%;
height: 300px;
background-color: #c7c7c7;
}
#contents .gallery {
width: 100%;
height: 300px;
background-color: #bcbcbc;
}
#contents .link {
width: 100%;
height: 150px;
background-color: #b1b1b1;
}
슬라이드 영역은 특별한 것이 없으니 영역만 잡고 넘어가겠습니다.
대신 width
값은 유동적으로 변해야 하기 때문에 width: calc(100% - 600px)
이렇게 설정했습니다.
<article id="slider"></article>
#slider {
width: calc(100% - 600px);
height: 750px;
background-color: #bcbcbc;
}
푸터 영역은 3개의 영역으로 이루어져 있습니다.
<footer id="footer">
<div class="footer1"></div>
<div class="footer2"></div>
<div class="footer3"></div>
</footer>
#footer {
width: 100%;
display: flex;
}
#footer .footer1 {
width: 20%;
height: 100px;
background-color: #b1b1b1;
}
#footer .footer2 {
width: 60%;
height: 100px;
background-color: #a3a3a3;
}
#footer .footer3 {
width: 20%;
height: 100px;
background-color: #9d9d9d;
}
3. 마무리
출제자가 E 유형은 신경좀 쓴거 같네요! 미세하게 다른 부분이 여러분들을 헷갈리게 할거 같습니다. 방법은 이미지만 보고 여러분이 스스로 만들어 보고 실패를 많이 해야 실전에서 실수없이 작업할 수 있습니다. 화이팅!!!! 🤭
PDF 샘플
레이아웃
- A1 유형
- A2 유형
- A3 유형
- A4 유형
- B1 유형
- B2 유형
- B3 유형
- B4 유형
- C1 유형
- C2 유형
- C3 유형
- C4 유형
- D1 유형
- D2 유형
- D3 유형
- D4 유형
- E1 유형
- E2 유형
- E3 유형
- E4 유형
댓글