728x90
사이트 만들기
이번 사이트는 헤더 유형입니다.
○ 헤더 유형 01
헤더 유형은 사이트 최상단 로고와 메뉴 등이 들어가는 구역입니다.
▶ HTML 파트
<section id="headerType" class="header__wrap nexon">
<div class="header__inner">
<div class="header__logo">
<a href="#">web <em>site</em></a>
</div>
<div class="header__menu">
<ul>
<li><a href="#">헤더 영역</a></li>
<li><a href="#">슬라이드 영역</a></li>
<li><a href="#">배너 영역</a></li>
<li><a href="#">컨텐츠 영역</a></li>
<li><a href="#">푸터 영역</a></li>
</ul>
</div>
<div class="header__member">
<a href="#">로그인</a>
</div>
</div>
</section>
그게 로고 / 메뉴 / 로그인 세가지 부분으로 나누어 구분을 짓습니다.
▶ CSS 파트
/* fonts */
@import url('https://webfontworld.github.io/NexonLv1Gothic/NexonLv1Gothic.css');
.nexon {
font-family: 'NexonLv1Gothic';
font-weight: 400;
}
/* reset */
* {
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: #000;
}
img {
width: 100%;
}
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
}
em, i, address {
font-style: normal;
}
/* common */
.container {
width: 1160px;
padding: 0 20px;
margin: 0 auto;
min-width: 1160px;
}
.section {
padding: 120px 0;
}
.section > h2 {
font-size: 50px;
line-height: 1;
text-align: center;
margin-bottom: 20px;
}
.section > p {
font-size: 22px;
font-weight: 300;
color: #666;
text-align: center;
margin-bottom: 70px;
}
.section > span {
display: block;
text-align: center;
font-size: 16px;
text-decoration: underline;
text-underline-position: under;
margin-bottom: 16px;
}
.mb70 {
margin-bottom: 70px !important;
}
/* headerType */
.header__inner {
width: 100%;
height: 70px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 20px;
box-sizing: border-box;
border-bottom: 1px solid #ccc;
}
.header__logo {
width: 20%;
font-size: 30px;
font-weight: 700;
text-transform: uppercase;
}
.header__logo em {
font-size: 18px;
font-weight: 400;
}
.header__menu {
width: 60%;
text-align: center;
}
.header__menu li {
display: inline;
}
.header__menu li a {
padding: 13px 30px;
margin: 0 5px;
transition: background-color 0.3s;
}
.header__menu li a:hover {
background-color: #f1f1f1;
border-radius: 5px;
}
.header__member {
width: 20%;
text-align: right;
}
.header__member a {
font-size: 16px;
border: 1px solid #000;
padding: 10px 30px;
border-radius: 50px;
transition: background-color 0.3s;
}
.header__member a:hover {
background-color: #000;
color: #fff;
}
flex를 사용해 일렬로 정렬하면 헤더 영역의 기본 구조는 완성됩니다.
※ text-transform
text-transform
텍스트 대문자/소문자를 바꾸는 속성입니다
none : 입력된 그대로 출력합니다.
capitalize : 단어의 첫번째 글자를 대문자로 바꿉니다.
uppercase : 모든 글자를 대문자로 바꿉니다.
lowercase : 모든 글자를 소문자로 바꿉니다.
initial : 기본값으로 설정합니다.
inherit : 부모 요소의 속성값을 상속받습니다.
텍스트 대문자/소문자를 바꾸는 속성입니다
none : 입력된 그대로 출력합니다.
capitalize : 단어의 첫번째 글자를 대문자로 바꿉니다.
uppercase : 모든 글자를 대문자로 바꿉니다.
lowercase : 모든 글자를 소문자로 바꿉니다.
initial : 기본값으로 설정합니다.
inherit : 부모 요소의 속성값을 상속받습니다.
※ 완성된 형태
'사이트 만들기' 카테고리의 다른 글
슬라이드 유형 사이트 01 (2) | 2022.09.06 |
---|---|
이미지/텍스트 유형 01 (6) | 2022.09.01 |
이미지 유형 03 (3) | 2022.08.22 |
이미지 유형 02 (1) | 2022.08.18 |
이미지 유형 01 (2) | 2022.08.18 |
댓글