?
This document uses PHP Chinese website manual Release
Bootstrap 是一個用于快速開發(fā) Web 應用程序和網站的前端框架。Bootstrap 是基于 HTML、CSS、JAVASCRIPT 的。
Bootstrap 是由 Twitter 的 Mark Otto 和 Jacob Thornton 開發(fā)的。Bootstrap 是 2011 年八月在 GitHub 上發(fā)布的開源產品。
本站的 Bootstrap 教程包含了上百個實例。
你可以使用我們的在線編輯器在線編輯代碼,并點擊運行按鈕查看結果。
效果預覽 ?<div class="container">
? <div class="jumbotron">
??? <h1>我的第一個 Bootstrap 頁面</h1>
? ? <p>重置窗口大小,查看響應式效果!</p>
? </div>
? <div class="row">
??? <div class="col-sm-4">
????? <h3>Column 1</h3>
????? <p>學的不僅是技術,更是夢想!</p>
????? <p>再牛逼的夢想,也抵不住你傻逼似的堅持!</p>
??? </div>
??? <div class="col-sm-4">
????? <h3>Column 2</h3>
????? <p>學的不僅是技術,更是夢想!</p>
????? <p>再牛逼的夢想,也抵不住你傻逼似的堅持!</p>
??? </div>
??? <div class="col-sm-4">
????? <h3>Column 3</h3>
????? <p>學的不僅是技術,更是夢想!</p>
????? <p>再牛逼的夢想,也抵不住你傻逼似的堅持!</p>
??? </div>
? </div>
</div>
效果預覽 ?<div class="container">
? <p>Create a responsive table with alternating cell background color:</p>
?
? <div class="table-responsive">
??? <table class="table table-striped table-bordered">
????? <thead>
??????? <tr>
????????? <th>#</th>
????????? <th>Name</th>
????????? <th>Street</th>
??????? </tr>
????? </thead>
????? <tbody>
??????? <tr>
????????? <td>1</td>
????????? <td>Anna Awesome</td>
????????? <td>Broome Street</td>
??????? </tr>
??????? <tr>
????????? <td>2</td>
????????? <td>Debbie Dallas</td>
????????? <td>Houston Street</td>
??????? </tr>
??????? <tr>
????????? <td>3</td>
????????? <td>John Doe</td>
????????? <td>Madison Street</td>
??????? </tr>
????? </tbody>
??? </table>
? </div>
</div>
點擊 "嘗試一下" 按鈕查看它是如何工作的。