본문 바로가기
SITE/Banner Type

[사이트 만들기] 배너 유형01

by 코린이 박원장👶 2022. 9. 5.

사이트 만들기 _ 배너 유형01

오늘은 사이트에서 일반적으로 홍보 이미지 등을 삽입하는 배너 유형을 만들어 보겠습니다.



■ 그림으로 미리보기🎨

■ 핵심내용✍

.banner__inner {
    background-image: url(../site1/assets/img/banner_bg01.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 120px 0;
    color: white;
}

배경이미지를 삽입하였는데,
repeat으로 반복없이 한번만 출력,
position:center로 가운데 정렬을,
size:cover를 통해 사이즈에 맞게 채웁니다.

CSS 속성

/* fonts */
@import url('https://webfontworld.github.io/NexonLv1Gothic/NexonLv1Gothic.css');

.nexon {
    font-family: "NexonLv1Gothic";
    font-weight: 400;
}

/* 리셋 */
*{
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    color: #000;
}
img {
    width: 100%;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 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;
}

.banner__inner {
    background-image: url(../site1/assets/img/banner_bg01.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 120px 0;
    color: white;
}
.banner__inner .title {
    font-size: 50px;
    line-height: 1;
    font-weight: 300;
    margin-bottom: 40px;
}
.banner__inner .desc {
    font-size: 24px;
    line-height: 1.5;
    font-weight: 300;
    margin-bottom: 70px;
}
.banner__inner .desc a {
    color: white;
    display: block;
}
.banner__inner .desc a:hover {
    text-decoration: underline;
}
.banner__inner .small {
    font-size: 16px;
    text-decoration: underline;
}
.blind{
    position: absolute;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
}

HTML 속성

<section id="bannerType" class="banner__wrap nexon">;
    <h2 class="blind">;배너 영역</h2>;
    <div class="banner__inner">;
      <h3 class="title">;코린이 박원장</h3>;
      <p class="desc">;
        밖에 비온다 주륵주륵 밖에 비온다 주륵주륵
        <a href="#" title="새로운 페이지 열림" target="_blank">;sshin4882.tistory.com</a>;
      </p>;
      <span class="small">;배너 유형01</span>;
    </div>;
  </section>;
  <!--//bannerType-->;

결과보기

728x90

댓글


HTML이미지
HTML이미지

JAVASCRIPT

자세히 보기
HTML이미지