Link Search Menu Expand Document

Info Jumbotron

Table of contents

  1. Jumbotron
    1. What is Jumbotron?
    2. Jumbotron Inside Container
    3. Jumbotron Outside Container
  2. Page Header
    1. Example Page Header

Jumbotron

What is Jumbotron?

특별한 내용이나 정보에 특별한주의를 기울이는 큰 상자

▸ 웹사이트에서 중요한 내용 또는 공지사항 등을 부각할 때 사용

▸ 모서리가 둥근 회색 상자로 표시되고 내부 텍스트의 글꼴 크기를 확대함

▸ 글꼴크기 21px, 내부는 30px의 패딩값 적용, 배경색상 #eee

★ jumbotron 안에는 다른 Bootstrap 요소, 클래스를 포함하여 거의 모든 유효한 HTML에 사용할 수 있음

syntax

class=”container”

Jumbotron Inside Container

<div class="container">
  <div class="jumbotron">
    <h1>Bootstrap Tutorial</h1>      
    <p>Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile-first projects on the web.</p>
  </div>
  <p>This is some text.</p>      
  <p>This is another text.</p>      
</div>

Jumbotron Outside Container

외부에 두면 넓이가 100%가 된다

<div class="jumbotron">
  <h1>Bootstrap Tutorial</h1>      
  <p>Bootstrap is the most popular HTML, CSS, and JS framework for developing responsive, mobile-first projects on the web.</p>
</div>

<div class="container">
  <p>This is some text.</p>      
  <p>This is another text.</p>      
</div>

제목 아래 수평 라인을 추가

▸ 페이지 헤더는 섹션 구분선과 같음

Example Page Header

<div class="container">
  <div class="page-header">
    <h1>Example Page Header</h1>      
  </div>
  <p>This is some text.</p>      
  <p>This is another text.</p>      
</div>

이 웹사이트는 jekyll로 제작되었습니다. Patrick Marsceill, Distributed by an MIT license.