부트스트랩 3 튜토리얼

부트스트랩은 반응형 모바일 우선 웹사이트를 개발하기 위해 가장 널리 사용되는 HTML, CSS 및 JavaScript 프레임워크입니다.

부트스트랩은 완전 무료로 다운로드하여 사용할 수 있습니다!

지금 부트스트랩 학습 시작하기 » 부트스트랩 배우기

직접 사용해 보기

이 부트스트랩 튜토리얼에는 수백 개의 부트스트랩 예제가 포함되어 있습니다.

온라인 편집기를 사용하여 코드를 편집하고 버튼을 클릭하여 결과를 볼 수 있습니다.

반응형 부트스트랩 페이지

부트스트랩 예제

<div class="jumbotron text-center">
  <h1>My First Bootstrap Page</h1>
  <p>Resize this responsive page to see the effect!</p>
</div>

<div class="container">
  <div class="row">
    <div class="col-sm-4">
      <h3>Column 1</h3>
      <p>Lorem ipsum dolor..</p>
    </div>
    <div class="col-sm-4">
      <h3>Column 2</h3>
      <p>Lorem ipsum dolor..</p>
    </div>
    <div class="col-sm-4">
      <h3>Column 3</h3>
      <p>Lorem ipsum dolor..</p>
    </div>
  </div>
</div>

"Try it Yourself" 버튼을 클릭하여 작동 방식을 확인하십시오.



부트스트랩 연습

연습으로 자신을 테스트하십시오

연습:

아래 목록을 페이지 매김 메뉴로 변환하려면 올바른 클래스 이름을 추가하십시오.

<ul class="">
  <li><a href="#">1</a></li>
  <li><a href="#">2</a></li>
  <li><a href="#">3</a></li>
  <li><a href="#">4</a></li>
  <li><a href="#">5</a></li>
</ul>


Bootstrap Quiz Test

Test your Bootstrap skills at W3Schools!

Start Bootstrap Quiz!


Bootstrap References

At W3Schools you will find a complete Bootstrap reference of all CSS classes, Components, and JavaScript plugins - all with "Try it Yourself" examples:


Bootstrap Themes / Templates

We have made some Bootstrap Templates you can play around with. They are completely free to use:


Bootstrap 5 vs. Bootstrap 3 & 4

This tutorial follows Bootstrap 3, which was released in 2013. However, we also cover newer versions; Bootstrap 4 (released 2018) and Bootstrap 5 (released 2021).

Bootstrap 5 is the newest version of Bootstrap; with new components, faster stylesheets, more responsiveness etc. It supports the latest, stable releases of all major browsers and platforms. However, Internet Explorer 11 and down is not supported.

The main differences between Bootstrap 5 and Bootstrap 3 & 4, is that Bootstrap 5 has switched to JavaScript instead of jQuery.

Note: Bootstrap 3 and Bootstrap 4 is still supported by the team for critical bugfixes and documentation changes, and it is perfectly safe to continue to use them. However, new features will NOT be added to them.


Did You Know?

W3.CSS is an excellent alternative to Bootstrap.

W3.CSS is smaller, faster, and easier to use.

If you want to learn W3.CSS, go to our W3.CSS Tutorial.