bootstrap-source/bootstrap-3.0.3/getting-started.html
changeset 54 0ded9d7748b7
equal deleted inserted replaced
53:3416f82943ea 54:0ded9d7748b7
       
     1 ---
       
     2 layout: default
       
     3 title: Getting started
       
     4 slug: getting-started
       
     5 lead: "An overview of Bootstrap, how to download and use, basic templates and examples, and more."
       
     6 base_url: "../"
       
     7 ---
       
     8 
       
     9 
       
    10   <!-- Getting started
       
    11   ================================================== -->
       
    12   <div class="bs-docs-section">
       
    13     <div class="page-header">
       
    14       <h1 id="download">Download Bootstrap</h1>
       
    15     </div>
       
    16     <p class="lead">Bootstrap has a few easy ways to quickly get started, each one appealing to a different skill level and use case. Read through to see what suits your particular needs.</p>
       
    17 
       
    18     <h3 id="download-compiled">Compiled CSS, JS, and fonts</h3>
       
    19     <p>The fastest way to get Bootstrap is to download the precompiled and minified versions of our CSS, JavaScript, and fonts. No documentation or original source code files are included.</p>
       
    20     <p><a class="btn btn-lg btn-primary" href="{{ site.download_dist }}" onclick="_gaq.push(['_trackEvent', 'Getting started', 'Download', 'Download compiled']);" role="button">Download precompiled Bootstrap</a></p>
       
    21 
       
    22     <h3 id="download-additional">Additional downloads</h3>
       
    23     <div class="bs-docs-dl-options">
       
    24       <h4>
       
    25         <a href="{{ site.download_source }}" onclick="_gaq.push(['_trackEvent', 'Getting started', 'Download', 'Download source']);">Download source code</a>
       
    26       </h4>
       
    27       <p>Get the latest Bootstrap LESS and JavaScript source code by downloading it directly from GitHub.</p>
       
    28       <h4>
       
    29         <a href="{{ site.repo }}" onclick="_gaq.push(['_trackEvent', 'Getting started', 'Download', 'GitHub project']);">Clone or fork via GitHub</a>
       
    30       </h4>
       
    31       <p>Visit us on GitHub to clone or fork the Bootstrap project.</p>
       
    32       <h4>
       
    33         Install with <a href="http://bower.io">Bower</a>
       
    34       </h4>
       
    35       <p>Install and manage Bootstrap's styles, JavaScript, and documentation using <a href="http://bower.io">Bower</a>.</p>
       
    36       {% highlight bash %}$ bower install bootstrap{% endhighlight %}
       
    37     </div>
       
    38 
       
    39     <h3 id="download-cdn">Bootstrap CDN</h3>
       
    40     <p>The folks over at <a href="http://www.maxcdn.com/">MaxCDN</a> graciously provide CDN support for Bootstrap's CSS and JavaScript. Just use these <a href="http://www.bootstrapcdn.com/">Bootstrap CDN</a> links.</p>
       
    41 {% highlight html %}
       
    42 <!-- Latest compiled and minified CSS -->
       
    43 <link rel="stylesheet" href="{{ site.cdn_css }}">
       
    44 
       
    45 <!-- Optional theme -->
       
    46 <link rel="stylesheet" href="{{ site.cdn_theme_css }}">
       
    47 
       
    48 <!-- Latest compiled and minified JavaScript -->
       
    49 <script src="{{ site.cdn_js }}"></script>
       
    50 {% endhighlight %}
       
    51 
       
    52     <div class="bs-callout bs-callout-warning" id="callout-less-compilation">
       
    53       <h4>Compiling Bootstrap's LESS files</h4>
       
    54       <p>If you work with Bootstrap's uncompiled source code, you need to compile the LESS files to produce usable CSS files. For compiling LESS files into CSS, we only officially support <a href="http://twitter.github.io/recess/">Recess</a>, which is Twitter's CSS hinter based on <a href="http://lesscss.org">less.js</a>.</p>
       
    55     </div>
       
    56   </div>
       
    57 
       
    58 
       
    59   <!-- File structure
       
    60   ================================================== -->
       
    61   <div class="bs-docs-section">
       
    62     <div class="page-header">
       
    63       <h1 id="whats-included">What's included</h1>
       
    64     </div>
       
    65     <p class="lead">Bootstrap is downloadable in two forms, within which you'll find the following directories and files, logically grouping common resources and providing both compiled and minified variations.</p>
       
    66 
       
    67     <div class="bs-callout bs-callout-warning" id="jquery-required">
       
    68       <h4>jQuery required</h4>
       
    69       <p>Please note that <strong>all JavaScript plugins require jQuery</strong> to be included, as shown in the <a href="#template">starter template</a>. <a href="{{ site.repo }}/blob/v{{ site.current_version }}/bower.json">Consult our <code>bower.json</code></a> to see which versions of jQuery are supported.</p>
       
    70     </div>
       
    71 
       
    72     <h2 id="whats-included-precompiled">Precompiled Bootstrap</h2>
       
    73     <p>Once downloaded, unzip the compressed folder to see the structure of (the compiled) Bootstrap. You'll see something like this:</p>
       
    74 <!-- NOTE: This info is intentionally duplicated in the README.
       
    75 Copy any changes made here over to the README too. -->
       
    76 {% highlight bash %}
       
    77 bootstrap/
       
    78 ├── css/
       
    79 │   ├── bootstrap.css
       
    80 │   ├── bootstrap.min.css
       
    81 │   ├── bootstrap-theme.css
       
    82 │   └── bootstrap-theme.min.css
       
    83 ├── js/
       
    84 │   ├── bootstrap.js
       
    85 │   └── bootstrap.min.js
       
    86 └── fonts/
       
    87     ├── glyphicons-halflings-regular.eot
       
    88     ├── glyphicons-halflings-regular.svg
       
    89     ├── glyphicons-halflings-regular.ttf
       
    90     └── glyphicons-halflings-regular.woff
       
    91 {% endhighlight %}
       
    92 
       
    93     <p>This is the most basic form of Bootstrap: precompiled files for quick drop-in usage in nearly any web project. We provide compiled CSS and JS (<code>bootstrap.*</code>), as well as compiled and minified CSS and JS (<code>bootstrap.min.*</code>). Fonts from Glyphicons are included, as is the optional Bootstrap theme.</p>
       
    94 
       
    95     <h2 id="whats-included-source">Bootstrap source code</h2>
       
    96     <p>The Bootstrap source code download includes the precompiled CSS, JavaScript, and font assets, along with source LESS, JavaScript, and documentation. More specifically, it includes the following and more:</p>
       
    97 {% highlight bash %}
       
    98 bootstrap/
       
    99 ├── less/
       
   100 ├── js/
       
   101 ├── fonts/
       
   102 ├── dist/
       
   103 │   ├── css/
       
   104 │   ├── js/
       
   105 │   └── fonts/
       
   106 ├── docs-assets/
       
   107 ├── examples/
       
   108 └── *.html
       
   109 {% endhighlight %}
       
   110   </div>
       
   111   <p>The <code>less/</code>, <code>js/</code>, and <code>fonts/</code> are the source code for our CSS, JS, and icon fonts (respectively). The <code>dist/</code> folder includes everything listed in the precompiled download section above. <code>docs-assets/</code>, <code>examples/</code>, and all <code>*.html</code> files are for our documentation. Beyond that, any other included file provides support for packages, license information, and development.</p>
       
   112 
       
   113 
       
   114   <!-- Template
       
   115   ================================================== -->
       
   116   <div class="bs-docs-section">
       
   117     <div class="page-header">
       
   118       <h1 id="template">Basic template</h1>
       
   119     </div>
       
   120     <p class="lead">Start with this basic HTML template, or modify <a href="../getting-started#examples">these examples</a>. We hope you'll customize our templates and examples, adapting them to suit your needs.</p>
       
   121 
       
   122     <p>Copy the HTML below to begin working with a minimal Bootstrap document.</p>
       
   123 {% highlight html %}
       
   124 <!DOCTYPE html>
       
   125 <html>
       
   126   <head>
       
   127     <title>Bootstrap 101 Template</title>
       
   128     <meta name="viewport" content="width=device-width, initial-scale=1.0">
       
   129     <!-- Bootstrap -->
       
   130     <link href="css/bootstrap.min.css" rel="stylesheet">
       
   131 
       
   132     <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
       
   133     <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
       
   134     <!--[if lt IE 9]>
       
   135       <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
       
   136       <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
       
   137     <![endif]-->
       
   138   </head>
       
   139   <body>
       
   140     <h1>Hello, world!</h1>
       
   141 
       
   142     <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
       
   143     <script src="https://code.jquery.com/jquery.js"></script>
       
   144     <!-- Include all compiled plugins (below), or include individual files as needed -->
       
   145     <script src="js/bootstrap.min.js"></script>
       
   146   </body>
       
   147 </html>
       
   148 {% endhighlight %}
       
   149   </div>
       
   150 
       
   151 
       
   152   <!-- Template
       
   153   ================================================== -->
       
   154   <div class="bs-docs-section">
       
   155     <div class="page-header">
       
   156       <h1 id="examples">Examples</h1>
       
   157     </div>
       
   158     <p class="lead">Build on the basic template above with Bootstrap's many components. See also <a href="#customizing">Customizing Bootstrap</a> for tips on maintaining your own Bootstrap variants.</p>
       
   159 
       
   160     <div class="row bs-examples">
       
   161       <div class="col-xs-6 col-md-4">
       
   162         <a class="thumbnail" href="../examples/starter-template/">
       
   163           <img src="../examples/screenshots/starter-template.jpg" alt="">
       
   164         </a>
       
   165         <h4>Starter template</h4>
       
   166         <p>Nothing but the basics: compiled CSS and JavaScript along with a container.</p>
       
   167       </div>
       
   168       <div class="col-xs-6 col-md-4">
       
   169         <a class="thumbnail" href="../examples/grid/">
       
   170           <img src="../examples/screenshots/grid.jpg" alt="">
       
   171         </a>
       
   172         <h4>Grids</h4>
       
   173         <p>Multiple examples of grid layouts with all four tiers, nesting, and more.</p>
       
   174       </div>
       
   175       <div class="clearfix visible-xs"></div>
       
   176 
       
   177       <div class="col-xs-6 col-md-4">
       
   178         <a class="thumbnail" href="../examples/jumbotron/">
       
   179           <img src="../examples/screenshots/jumbotron.jpg" alt="">
       
   180         </a>
       
   181         <h4>Jumbotron</h4>
       
   182         <p>Build around the jumbotron with a navbar and some basic grid columns.</p>
       
   183       </div>
       
   184       <div class="col-xs-6 col-md-4">
       
   185         <a class="thumbnail" href="../examples/jumbotron-narrow/">
       
   186           <img src="../examples/screenshots/jumbotron-narrow.jpg" alt="">
       
   187         </a>
       
   188         <h4>Narrow jumbotron</h4>
       
   189         <p>Build a more custom page by narrowing the default container and jumbotron.</p>
       
   190       </div>
       
   191       <div class="clearfix visible-xs"></div>
       
   192 
       
   193       <div class="col-xs-6 col-md-4">
       
   194         <a class="thumbnail" href="../examples/navbar/">
       
   195           <img src="../examples/screenshots/navbar.jpg" alt="">
       
   196         </a>
       
   197         <h4>Navbar</h4>
       
   198         <p>Super basic template that includes the navbar along with some additional content.</p>
       
   199       </div>
       
   200       <div class="col-xs-6 col-md-4">
       
   201         <a class="thumbnail" href="../examples/navbar-static-top/">
       
   202           <img src="../examples/screenshots/navbar-static.jpg" alt="">
       
   203         </a>
       
   204         <h4>Static top navbar</h4>
       
   205         <p>Super basic template with a static top navbar along with some additional content.</p>
       
   206       </div>
       
   207       <div class="clearfix visible-xs"></div>
       
   208 
       
   209       <div class="col-xs-6 col-md-4">
       
   210         <a class="thumbnail" href="../examples/navbar-fixed-top/">
       
   211           <img src="../examples/screenshots/navbar-fixed.jpg" alt="">
       
   212         </a>
       
   213         <h4>Fixed navbar</h4>
       
   214         <p>Super basic template with a fixed top navbar along with some additional content.</p>
       
   215       </div>
       
   216       <div class="col-xs-6 col-md-4">
       
   217         <a class="thumbnail" href="../examples/signin/">
       
   218           <img src="../examples/screenshots/sign-in.jpg" alt="">
       
   219         </a>
       
   220         <h4>Sign-in page</h4>
       
   221         <p>Custom form layout and design for a simple sign in form.</p>
       
   222       </div>
       
   223       <div class="clearfix visible-xs"></div>
       
   224 
       
   225       <div class="col-xs-6 col-md-4">
       
   226         <a class="thumbnail" href="../examples/sticky-footer/">
       
   227           <img src="../examples/screenshots/sticky-footer.jpg" alt="">
       
   228         </a>
       
   229         <h4>Sticky footer</h4>
       
   230         <p>Attach a footer to the bottom of the viewport when the content is shorter than it.</p>
       
   231       </div>
       
   232       <div class="col-xs-6 col-md-4">
       
   233         <a class="thumbnail" href="../examples/sticky-footer-navbar/">
       
   234           <img src="../examples/screenshots/sticky-footer-navbar.jpg" alt="">
       
   235         </a>
       
   236         <h4>Sticky footer with navbar</h4>
       
   237         <p>Attach a footer to the bottom of the viewport with a fixed navbar at the top.</p>
       
   238       </div>
       
   239       <div class="clearfix visible-xs"></div>
       
   240 
       
   241       <div class="col-xs-6 col-md-4">
       
   242         <a class="thumbnail" href="../examples/justified-nav/">
       
   243           <img src="../examples/screenshots/justified-nav.jpg" alt="">
       
   244         </a>
       
   245         <h4>Justified nav</h4>
       
   246         <p>Create a custom navbar with justified links. Heads up! <a href="../components/#nav-justified">Not too WebKit friendly.</a></p>
       
   247       </div>
       
   248       <div class="col-xs-6 col-md-4">
       
   249         <a class="thumbnail" href="../examples/offcanvas/">
       
   250           <img src="../examples/screenshots/offcanvas.jpg" alt="">
       
   251         </a>
       
   252         <h4>Offcanvas</h4>
       
   253         <p>Build a toggleable off-canvas navigation menu for use with Bootstrap.</p>
       
   254       </div>
       
   255       <div class="clearfix visible-xs"></div>
       
   256 
       
   257       <div class="col-xs-6 col-md-4">
       
   258         <a class="thumbnail" href="../examples/carousel/">
       
   259           <img src="../examples/screenshots/carousel.jpg" alt="">
       
   260         </a>
       
   261         <h4>Carousel</h4>
       
   262         <p>Customize the navbar and carousel, then add some new components.</p>
       
   263       </div>
       
   264       <div class="col-xs-6 col-md-4">
       
   265         <a class="thumbnail" href="../examples/non-responsive/">
       
   266           <img src="../examples/screenshots/non-responsive.jpg" alt="">
       
   267         </a>
       
   268         <h4>Non-responsive Bootstrap</h4>
       
   269         <p>Easily disable the responsiveness of Bootstrap <a href="../getting-started/#disable-responsive">per our docs</a>.</p>
       
   270       </div>
       
   271       <div class="clearfix visible-xs"></div>
       
   272 
       
   273       <div class="col-xs-6 col-md-4">
       
   274         <a class="thumbnail" href="../examples/theme/">
       
   275           <img src="../examples/screenshots/theme.jpg" alt="">
       
   276         </a>
       
   277         <h4>Bootstrap theme</h4>
       
   278         <p>Load the optional Bootstrap theme for a visually enhanced experience.</p>
       
   279       </div>
       
   280     </div>
       
   281 
       
   282   </div>
       
   283 
       
   284 
       
   285   <!-- Template
       
   286   ================================================== -->
       
   287   <div class="bs-docs-section">
       
   288     <div class="page-header">
       
   289       <h1 id="disable-responsive">Disabling responsiveness</h1>
       
   290     </div>
       
   291     <p class="lead">Bootstrap automatically adapts your pages for various screen sizes.
       
   292       Here's how to disable this feature so your page works like in <a href="../examples/non-responsive/">this non-responsive example</a>.</p>
       
   293 
       
   294     <h3>Steps to disable page responsiveness</h3>
       
   295     <ol>
       
   296       <li>Omit the viewport <code>&lt;meta&gt;</code> mentioned in <a href="../css/#overview-mobile">the CSS docs</a></li>
       
   297       <li>Override the <code>width</code> on the <code>.container</code> for each grid tier with a single width, for example <code>width: 970px !important;</code> Be sure that this comes after the default Bootstrap CSS. You can optionally avoid the <code>!important</code> with media queries or some selector-fu.</li>
       
   298       <li>If using navbars, remove all navbar collapsing and expanding behavior.</li>
       
   299       <li>For grid layouts, use <code>.col-xs-*</code> classes in addition to, or in place of, the medium/large ones. Don't worry, the extra-small device grid scales to all resolutions.</li>
       
   300     </ol>
       
   301     <p>You'll still need Respond.js for IE8 (since our media queries are still there and need to be processed).
       
   302       This disables the "mobile site" aspects of Bootstrap.</p>
       
   303 
       
   304     <h3>Bootstrap template with responsiveness disabled</h3>
       
   305     <p>We've applied these steps to an example. Read its source code to see the specific changes implemented.</p>
       
   306     <p>
       
   307       <a href="../examples/non-responsive/" class="btn btn-primary">View non-responsive example</a>
       
   308     </p>
       
   309   </div>
       
   310 
       
   311 
       
   312   <!-- Migration
       
   313   ================================================== -->
       
   314   <div class="bs-docs-section">
       
   315     <div class="page-header">
       
   316       <h1 id="migration">Migrating from 2.x to 3.0</h1>
       
   317     </div>
       
   318     <p class="lead">Bootstrap 3 is not backwards compatible with v2.x. Use this section as a general guide to upgrading from v2.x to v3.0. For a broader overview, see <a href="http://blog.getbootstrap.com/2013/08/19/bootstrap-3-released/">what's new</a> in the v3.0 release announcement.</p>
       
   319 
       
   320     <h2 id="migration-classes">Major class changes</h2>
       
   321     <p>This table shows the style changes between v2.x and v3.0.</p>
       
   322     <div class="table-responsive">
       
   323       <table class="table table-bordered table-striped">
       
   324         <thead>
       
   325           <tr>
       
   326             <th>Bootstrap 2.x</th>
       
   327             <th>Bootstrap 3.0</th>
       
   328           </tr>
       
   329         </thead>
       
   330         <tbody>
       
   331           <tr>
       
   332             <td><code>.container-fluid</code></td>
       
   333             <td><code>.container</code></td>
       
   334           </tr>
       
   335           <tr>
       
   336             <td><code>.row-fluid</code></td>
       
   337             <td><code>.row</code></td>
       
   338           </tr>
       
   339           <tr>
       
   340             <td><code>.span*</code></td>
       
   341             <td><code>.col-md-*</code></td>
       
   342           </tr>
       
   343           <tr>
       
   344             <td><code>.offset*</code></td>
       
   345             <td><code>.col-md-offset-*</code></td>
       
   346           </tr>
       
   347           <tr>
       
   348             <td><code>.brand</code></td>
       
   349             <td><code>.navbar-brand</code></td>
       
   350           </tr>
       
   351           <tr>
       
   352             <td><code>.nav-collapse</code></td>
       
   353             <td><code>.navbar-collapse</code></td>
       
   354           </tr>
       
   355           <tr>
       
   356             <td><code>.nav-toggle</code></td>
       
   357             <td><code>.navbar-toggle</code></td>
       
   358           </tr>
       
   359           <tr>
       
   360             <td><code>.btn-navbar</code></td>
       
   361             <td><code>.navbar-btn</code></td>
       
   362           </tr>
       
   363           <tr>
       
   364             <td><code>.hero-unit</code></td>
       
   365             <td><code>.jumbotron</code></td>
       
   366           </tr>
       
   367           <tr>
       
   368             <td><code>.icon-*</code></td>
       
   369             <td><code>.glyphicon .glyphicon-*</code></td>
       
   370           </tr>
       
   371           <tr>
       
   372             <td><code>.btn</code></td>
       
   373             <td><code>.btn .btn-default</code></td>
       
   374           </tr>
       
   375           <tr>
       
   376             <td><code>.btn-mini</code></td>
       
   377             <td><code>.btn-xs</code></td>
       
   378           </tr>
       
   379           <tr>
       
   380             <td><code>.btn-small</code></td>
       
   381             <td><code>.btn-sm</code></td>
       
   382           </tr>
       
   383           <tr>
       
   384             <td><code>.btn-large</code></td>
       
   385             <td><code>.btn-lg</code></td>
       
   386           </tr>
       
   387           <tr>
       
   388             <td><code>.alert-error</code></td>
       
   389             <td><code>.alert-danger</code></td>
       
   390           </tr>
       
   391           <tr>
       
   392             <td><code>.visible-phone</code></td>
       
   393             <td><code>.visible-xs</code></td>
       
   394           </tr>
       
   395           <tr>
       
   396             <td><code>.visible-tablet</code></td>
       
   397             <td><code>.visible-sm</code></td>
       
   398           </tr>
       
   399           <tr>
       
   400             <td><code>.visible-desktop</code></td>
       
   401             <td>Split into <code>.visible-md .visible-lg</code></td>
       
   402           </tr>
       
   403           <tr>
       
   404             <td><code>.hidden-phone</code></td>
       
   405             <td><code>.hidden-xs</code></td>
       
   406           </tr>
       
   407           <tr>
       
   408             <td><code>.hidden-tablet</code></td>
       
   409             <td><code>.hidden-sm</code></td>
       
   410           </tr>
       
   411           <tr>
       
   412             <td><code>.hidden-desktop</code></td>
       
   413             <td>Split into <code>.hidden-md .hidden-lg</code></td>
       
   414           </tr>
       
   415           <tr>
       
   416             <td><code>.input-small</code></td>
       
   417             <td><code>.input-sm</code></td>
       
   418           </tr>
       
   419           <tr>
       
   420             <td><code>.input-large</code></td>
       
   421             <td><code>.input-lg</code></td>
       
   422           </tr>
       
   423           <tr>
       
   424             <td><code>.control-group</code></td>
       
   425             <td><code>.form-group</code></td>
       
   426           </tr>
       
   427           <tr>
       
   428             <td><code>.control-group.warning .control-group.error .control-group.success</code></td>
       
   429             <td><code>.form-group.has-*</code></td>
       
   430           </tr>
       
   431           <tr>
       
   432             <td><code>.checkbox.inline</code> <code>.radio.inline</code></td>
       
   433             <td><code>.checkbox-inline</code> <code>.radio-inline</code></td>
       
   434           </tr>
       
   435           <tr>
       
   436             <td><code>.input-prepend</code> <code>.input-append</code></td>
       
   437             <td><code>.input-group</code></td>
       
   438           </tr>
       
   439           <tr>
       
   440             <td><code>.add-on</code></td>
       
   441             <td><code>.input-group-addon</code></td>
       
   442           </tr>
       
   443           <tr>
       
   444             <td><code>.img-polaroid</code></td>
       
   445             <td><code>.img-thumbnail</code></td>
       
   446           </tr>
       
   447           <tr>
       
   448             <td><code>ul.unstyled</code></td>
       
   449             <td><code>.list-unstyled</code></td>
       
   450           </tr>
       
   451           <tr>
       
   452             <td><code>ul.inline</code></td>
       
   453             <td><code>.list-inline</code></td>
       
   454           </tr>
       
   455           <tr>
       
   456             <td><code>.muted</code></td>
       
   457             <td><code>.text-muted</code></td>
       
   458           </tr>
       
   459           <tr>
       
   460             <td><code>.label</code></td>
       
   461             <td><code>.label .label-default</code></td>
       
   462           </tr>
       
   463           <tr>
       
   464             <td><code>.label-important</code></td>
       
   465             <td><code>.label-danger</code></td>
       
   466           </tr>
       
   467           <tr>
       
   468             <td><code>.text-error</code></td>
       
   469             <td><code>.text-danger</code></td>
       
   470           </tr>
       
   471           <tr>
       
   472             <td><code>.table .error</code></td>
       
   473             <td><code>.table .danger</code></td>
       
   474           </tr>
       
   475           <tr>
       
   476             <td><code>.bar</code></td>
       
   477             <td><code>.progress-bar</code></td>
       
   478           </tr>
       
   479           <tr>
       
   480             <td><code>.bar-*</code></td>
       
   481             <td><code>.progress-bar-*</code></td>
       
   482           </tr>
       
   483           <tr>
       
   484             <td><code>.accordion</code></td>
       
   485             <td><code>.panel-group</code></td>
       
   486           </tr>
       
   487           <tr>
       
   488             <td><code>.accordion-group</code></td>
       
   489             <td><code>.panel .panel-default</code></td>
       
   490           </tr>
       
   491           <tr>
       
   492             <td><code>.accordion-heading</code></td>
       
   493             <td><code>.panel-heading</code></td>
       
   494           </tr>
       
   495           <tr>
       
   496             <td><code>.accordion-body</code></td>
       
   497             <td><code>.panel-collapse</code></td>
       
   498           </tr>
       
   499           <tr>
       
   500             <td><code>.accordion-inner</code></td>
       
   501             <td><code>.panel-body</code></td>
       
   502           </tr>
       
   503         </tbody>
       
   504       </table>
       
   505     </div><!-- /.table-responsive -->
       
   506 
       
   507     <h2 id="migration-new">What's new</h2>
       
   508     <p>We've added new elements and changed some existing ones. Here are the new or updated styles.</p>
       
   509     <div class="table-responsive">
       
   510       <table class="table table-bordered table-striped">
       
   511         <thead>
       
   512           <tr>
       
   513             <th>Element</th>
       
   514             <th>Description</th>
       
   515           </tr>
       
   516         </thead>
       
   517         <tbody>
       
   518           <tr>
       
   519             <td>Panels</td>
       
   520             <td><code>.panel .panel-default</code> <code>.panel-body</code> <code>.panel-title</code> <code>.panel-heading</code> <code>.panel-footer</code> <code>.panel-collapse</code></td>
       
   521           </tr>
       
   522           <tr>
       
   523             <td>List groups</td>
       
   524             <td><code>.list-group</code> <code>.list-group-item</code> <code>.list-group-item-text</code> <code>.list-group-item-heading</code></td>
       
   525           </tr>
       
   526           <tr>
       
   527             <td>Glyphicons</td>
       
   528             <td><code>.glyphicon</code></td>
       
   529           </tr>
       
   530           <tr>
       
   531             <td>Jumbotron</td>
       
   532             <td><code>.jumbotron</code></td>
       
   533           </tr>
       
   534           <tr>
       
   535             <td>Extra small grid (&lt;768px)</td>
       
   536             <td><code>.col-xs-*</code></td>
       
   537           </tr>
       
   538           <tr>
       
   539             <td>Small grid (&ge;768px)</td>
       
   540             <td><code>.col-sm-*</code></td>
       
   541           </tr>
       
   542           <tr>
       
   543             <td>Medium grid (&ge;992px)</td>
       
   544             <td><code>.col-md-*</code></td>
       
   545           </tr>
       
   546           <tr>
       
   547             <td>Large grid (&ge;1200px)</td>
       
   548             <td><code>.col-lg-*</code></td>
       
   549           </tr>
       
   550           <tr>
       
   551             <td>Responsive utility classes (&ge;1200px)</td>
       
   552             <td><code>.visible-lg</code> <code>.hidden-lg</code></td>
       
   553           </tr>
       
   554           <tr>
       
   555             <td>Offsets</td>
       
   556             <td><code>.col-sm-offset-*</code> <code>.col-md-offset-*</code> <code>.col-lg-offset-*</code></td>
       
   557           </tr>
       
   558           <tr>
       
   559             <td>Push</td>
       
   560             <td><code>.col-sm-push-*</code> <code>.col-md-push-*</code> <code>.col-lg-push-*</code></td>
       
   561           </tr>
       
   562           <tr>
       
   563             <td>Pull</td>
       
   564             <td><code>.col-sm-pull-*</code> <code>.col-md-pull-*</code> <code>.col-lg-pull-*</code></td>
       
   565           </tr>
       
   566           <tr>
       
   567             <td>Input groups</td>
       
   568             <td><code>.input-group</code> <code>.input-group-addon</code> <code>.input-group-btn</code></td>
       
   569           </tr>
       
   570           <tr>
       
   571             <td>Form controls</td>
       
   572             <td><code>.form-control</code> <code>.form-group</code></td>
       
   573           </tr>
       
   574           <tr>
       
   575             <td>Button group sizes</td>
       
   576             <td><code>.btn-group-xs</code> <code>.btn-group-sm</code> <code>.btn-group-lg</code></td>
       
   577           </tr>
       
   578           <tr>
       
   579             <td>Navbar text</td>
       
   580             <td><code>.navbar-text</code></td>
       
   581           </tr>
       
   582           <tr>
       
   583             <td>Navbar header</td>
       
   584             <td><code>.navbar-header</code></td>
       
   585           </tr>
       
   586           <tr>
       
   587             <td>Justified tabs / pills</td>
       
   588             <td><code>.nav-justified</code></td>
       
   589           </tr>
       
   590           <tr>
       
   591             <td>Responsive images</td>
       
   592             <td><code>.img-responsive</code></td>
       
   593           </tr>
       
   594           <tr>
       
   595             <td>Contextual table rows</td>
       
   596             <td><code>.success</code> <code>.danger</code> <code>.warning</code> <code>.active</code></td>
       
   597           </tr>
       
   598           <tr>
       
   599             <td>Contextual panels</td>
       
   600             <td><code>.panel-success</code> <code>.panel-danger</code> <code>.panel-warning</code> <code>.panel-info</code></td>
       
   601           </tr>
       
   602           <tr>
       
   603             <td>Modal</td>
       
   604             <td><code>.modal-dialog</code> <code>.modal-content</code></td>
       
   605           </tr>
       
   606           <tr>
       
   607             <td>Thumbnail image</td>
       
   608             <td><code>.img-thumbnail</code></td>
       
   609           </tr>
       
   610           <tr>
       
   611             <td>Well sizes</td>
       
   612             <td><code>.well-sm</code> <code>.well-lg</code></td>
       
   613           </tr>
       
   614           <tr>
       
   615             <td>Alert links</td>
       
   616             <td><code>.alert-link</code></td>
       
   617           </tr>
       
   618         </tbody>
       
   619       </table>
       
   620     </div><!-- /.table-responsive -->
       
   621 
       
   622 
       
   623     <h2 id="migration-dropped">What's removed</h2>
       
   624     <p>The following elements have been dropped or changed in v3.0.</p>
       
   625     <div class="table-responsive">
       
   626       <table class="table table-bordered table-striped">
       
   627         <thead>
       
   628           <tr>
       
   629             <th>Element</th>
       
   630             <th>Removed from 2.x</th>
       
   631             <th>3.0 Equivalent</th>
       
   632           </tr>
       
   633         </thead>
       
   634         <tbody>
       
   635           <tr>
       
   636             <td>Form actions</td>
       
   637             <td><code>.form-actions</code></td>
       
   638             <td class="text-muted">N/A</td>
       
   639           </tr>
       
   640           <tr>
       
   641             <td>Search form</td>
       
   642             <td><code>.form-search</code></td>
       
   643             <td class="text-muted">N/A</td>
       
   644           </tr>
       
   645           <tr>
       
   646             <td>Form group with info</td>
       
   647             <td><code>.control-group.info</code></td>
       
   648             <td class="text-muted">N/A</td>
       
   649           </tr>
       
   650           <tr>
       
   651             <td>Fluid container</td>
       
   652             <td><code>.container-fluid</code></td>
       
   653             <td><code>.container</code> (no more fixed grid)</td>
       
   654           </tr>
       
   655           <tr>
       
   656             <td>Fluid row</td>
       
   657             <td><code>.row-fluid</code></td>
       
   658             <td><code>.row</code> (no more fixed grid)</td>
       
   659           </tr>
       
   660           <tr>
       
   661             <td>Controls wrapper</td>
       
   662             <td><code>.controls</code></td>
       
   663             <td class="text-muted">N/A</td>
       
   664           </tr>
       
   665           <tr>
       
   666             <td>Controls row</td>
       
   667             <td><code>.controls-row</code></td>
       
   668             <td><code>.row</code> or <code>.form-group</code></td>
       
   669           </tr>
       
   670           <tr>
       
   671             <td>Navbar inner</td>
       
   672             <td><code>.navbar-inner</code></td>
       
   673             <td class="text-muted">N/A</td>
       
   674           </tr>
       
   675           <tr>
       
   676             <td>Navbar vertical dividers</td>
       
   677             <td><code>.navbar .divider-vertical</code></td>
       
   678             <td class="text-muted">N/A</td>
       
   679           </tr>
       
   680           <tr>
       
   681             <td>Dropdown submenu</td>
       
   682             <td><code>.dropdown-submenu</code></td>
       
   683             <td class="text-muted">N/A</td>
       
   684           </tr>
       
   685           <tr>
       
   686             <td>Tab alignments</td>
       
   687             <td><code>.tabs-left</code> <code>.tabs-right</code> <code>.tabs-below</code></td>
       
   688             <td class="text-muted">N/A</td>
       
   689           </tr>
       
   690           <tr>
       
   691             <td>Nav lists</td>
       
   692             <td><code>.nav-list</code> <code>.nav-header</code></td>
       
   693             <td>No direct equivalent, but <a href="../components/#list-group">list groups</a> and <a href="../javascript/#collapse"><code>.panel-group</code>s</a> are similar.</td>
       
   694           </tr>
       
   695         </tbody>
       
   696       </table>
       
   697     </div><!-- /.table-responsive -->
       
   698 
       
   699 
       
   700     <h2 id="migration-notes">Additional notes</h2>
       
   701     <p>Other changes in v3.0 are not immediately apparent. Base classes, key styles, and behaviors have been adjusted for flexibility and our <em>mobile first</em> approach. Here's a partial list:</p>
       
   702     <ul>
       
   703       <li>By default, text-based form controls now receive only minimal styling.  For focus colors and rounded corners, apply the <code>.form-control</code> class on the element to style.</li>
       
   704       <li>Text-based form controls with the <code>.form-control</code> class applied are now 100% wide by default. Wrap inputs inside <code>&lt;div class="col-*"&gt;&lt;/div&gt;</code> to control input widths.</li>
       
   705       <li><code>.badge</code> no longer has contextual (-success,-primary,etc..) classes.</li>
       
   706       <li><code>.btn</code> must also use <code>.btn-default</code> to get the "default" button.</li>
       
   707       <li><code>.container</code> and <code>.row</code> are now fluid (percentage-based).</li>
       
   708       <li>Images are no longer responsive by default. Use <code>.img-responsive</code> for fluid <code>&lt;img&gt;</code> size.</li>
       
   709       <li>The icons, now <code>.glyphicon</code>, are now font based. Icons also require a base and icon class (e.g. <code>.glyphicon .glyphicon-asterisk</code>).</li>
       
   710       <li>Typeahead has been dropped, in favor of using <a href="http://twitter.github.io/typeahead.js/">Twitter Typeahead</a>.</li>
       
   711       <li>Modal markup has changed significantly. The <code>.modal-header</code>, <code>.modal-body</code>, and <code>.modal-footer</code> sections are now wrapped in <code>.modal-content</code> and <code>.modal-dialog</code> for better mobile styling and behavior.</li>
       
   712       <li>The HTML loaded by the <code>remote</code> modal option is now injected into the <code>.modal</code> instead of into the <code>.modal-body</code>. This allows you to also easily vary the header and footer of the modal, not just the modal body.</li>
       
   713       <li>JavaScript events are namespaced. For example, to handle the modal "show" event, use <code>'show.bs.modal'</code>. For tabs "shown" use <code>'shown.bs.tab'</code>, etc.</li>
       
   714     </ul>
       
   715     <p>For more information on upgrading to v3.0, and code snippets from the community, see <a href="http://bootply.com/">Bootply</a>.</p>
       
   716   </div>
       
   717 
       
   718 
       
   719   <!-- Browser support
       
   720   ================================================== -->
       
   721   <div class="bs-docs-section">
       
   722     <div class="page-header">
       
   723       <h1 id="browsers">Browser support</h1>
       
   724     </div>
       
   725     <p class="lead">Bootstrap is built to work best in the latest desktop and mobile browsers, meaning older browsers might display differently styled, though fully functional, renderings of certain components.</p>
       
   726 
       
   727     <h3>Supported browsers</h3>
       
   728     <p>Specifically, we support the latest versions of the following:</p>
       
   729     <ul>
       
   730       <li>Chrome (Mac, Windows, iOS, and Android)</li>
       
   731       <li>Safari (Mac and iOS only, as the Windows version is being abandoned)</li>
       
   732       <li>Firefox (Mac, Windows)</li>
       
   733       <li>Internet Explorer</li>
       
   734       <li>Opera (Mac, Windows)</li>
       
   735     </ul>
       
   736     <p>Unofficially, Bootstrap should look and behave well enough in Chromium and Chrome for Linux, Firefox for Linux, and Internet Explorer 7, though they are not officially supported.</p>
       
   737 
       
   738     <h3>Internet Explorer 8 and 9</h3>
       
   739     <p>Internet Explorer 8 and 9 are also supported, however, please be aware that some CSS3 properties and HTML5 elements are not fully supported by these browsers. In addition, <strong>Internet Explorer 8 requires the use of <a href="https://github.com/scottjehl/Respond">Respond.js</a> to enable media query support.</strong></p>
       
   740     <div class="table-responsive">
       
   741       <table class="table table-bordered table-striped">
       
   742         <thead>
       
   743           <tr>
       
   744             <th scope="col" class="col-xs-4">Feature</th>
       
   745             <th scope="col" class="col-xs-4">Internet Explorer 8</th>
       
   746             <th scope="col" class="col-xs-4">Internet Explorer 9</th>
       
   747           </tr>
       
   748         </thead>
       
   749         <tbody>
       
   750           <tr>
       
   751             <th scope="row"><code>border-radius</code></th>
       
   752             <td class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
       
   753             <td class="text-success"><span class="glyphicon glyphicon-ok"></span> Supported</td>
       
   754           </tr>
       
   755           <tr>
       
   756             <th scope="row"><code>box-shadow</code></th>
       
   757             <td class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
       
   758             <td class="text-success"><span class="glyphicon glyphicon-ok"></span> Supported</td>
       
   759           </tr>
       
   760           <tr>
       
   761             <th scope="row"><code>transform</code></th>
       
   762             <td class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
       
   763             <td class="text-success"><span class="glyphicon glyphicon-ok"></span> Supported, with <code>-ms</code> prefix</td>
       
   764           </tr>
       
   765           <tr>
       
   766             <th scope="row"><code>transition</code></th>
       
   767             <td colspan="2" class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
       
   768           </tr>
       
   769         </tbody>
       
   770         <tbody>
       
   771           <tr>
       
   772             <th scope="row"><code>placeholder</code></th>
       
   773             <td colspan="2" class="text-danger"><span class="glyphicon glyphicon-remove"></span> Not supported</td>
       
   774           </tr>
       
   775         </tbody>
       
   776       </table>
       
   777     </div>
       
   778 
       
   779     <p>Visit <a href="http://caniuse.com/">Can I use...</a> for details on browser support of CSS3 and HTML5 features.</p>
       
   780 
       
   781     <h3>Internet Explorer 8 and Respond.js</h3>
       
   782     <p>Beware of the following caveats when using Respond.js in your development and production environments for Internet Explorer 8.</p>
       
   783     <h4 id="respond-js-x-domain">Respond.js and cross-domain CSS</h4>
       
   784     <p>Using Respond.js with CSS hosted on a different (sub)domain (for example, on a CDN) requires some additional setup. <a href="https://github.com/scottjehl/Respond/blob/master/README.md#cdnx-domain-setup">See the Respond.js docs</a> for details.</p>
       
   785     <h4 id="respond-file-proto">Respond.js and <code>file://</code></h4>
       
   786     <p>Due to browser security rules, Respond.js doesn't work with pages viewed via the <code>file://</code> protocol (like when opening a local HTML file). To test responsive features in IE8, view your pages over HTTP(S). <a href="https://github.com/scottjehl/Respond/blob/master/README.md#support--caveats">See the Respond.js docs</a> for details.</p>
       
   787     <h4 id="respond-import">Respond.js and <code>@import</code></h4>
       
   788     <p>Respond.js doesn't work with CSS that's referenced via <code>@import</code>. In particular, some Drupal configurations are known to use <code>@import</code>. <a href="https://github.com/scottjehl/Respond/blob/master/README.md#support--caveats">See the Respond.js docs</a> for details.</p>
       
   789 
       
   790     <h3>Internet Explorer 8 and box-sizing</h3>
       
   791     <p>IE8 does not fully support <code>box-sizing: border-box;</code> when combined with <code>min-width</code>, <code>max-width</code>, <code>min-height</code>, or <code>max-height</code>. For that reason, as of v3.0.1, we no longer use <code>max-width</code> on <code>.container</code>s.</p>
       
   792 
       
   793     <h3 id="ie-compat-modes">IE Compatibility modes</h3>
       
   794     <p>Bootstrap is not supported in the old Internet Explorer compatibility modes. To be sure you're using the latest rendering mode for IE, consider including the appropriate <code>&lt;meta&gt;</code> tag in your pages:</p>
       
   795 {% highlight html %}
       
   796 <meta http-equiv="X-UA-Compatible" content="IE=edge">
       
   797 {% endhighlight %}
       
   798     <p>This tag is included in all docs pages and examples to ensure the best rendering possible in each supported version of Internet Explorer.</p>
       
   799     <p>See <a href="http://stackoverflow.com/questions/6771258/whats-the-difference-if-meta-http-equiv-x-ua-compatible-content-ie-edge">this StackOverflow question</a> for more information.</p>
       
   800 
       
   801     <h3 id="ie-10-width">Internet Explorer 10 in Windows 8 and Windows Phone 8</h3>
       
   802     <p>Internet Explorer 10 doesn't differentiate <strong>device width</strong> from <strong>viewport width</strong>, and thus doesn't properly apply the media queries in Bootstrap's CSS. Normally you'd just add a quick snippet of CSS to fix this:</p>
       
   803 {% highlight css %}
       
   804 @-ms-viewport       { width: device-width; }
       
   805 {% endhighlight %}
       
   806     <p>However, this doesn't work as it causes Windows Phone 8 devices to show a mostly desktop view instead of narrow "phone" view. To address this, you'll need to <strong>include the following CSS and JavaScript to work around the bug until Microsoft issues a fix</strong>.</p>
       
   807 {% highlight css %}
       
   808 @-webkit-viewport   { width: device-width; }
       
   809 @-moz-viewport      { width: device-width; }
       
   810 @-ms-viewport       { width: device-width; }
       
   811 @-o-viewport        { width: device-width; }
       
   812 @viewport           { width: device-width; }
       
   813 {% endhighlight %}
       
   814 
       
   815 {% highlight js %}
       
   816 if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
       
   817   var msViewportStyle = document.createElement("style")
       
   818   msViewportStyle.appendChild(
       
   819     document.createTextNode(
       
   820       "@-ms-viewport{width:auto!important}"
       
   821     )
       
   822   )
       
   823   document.getElementsByTagName("head")[0].appendChild(msViewportStyle)
       
   824 }
       
   825 {% endhighlight %}
       
   826     <p>For more information and usage guidelines, read <a href="http://timkadlec.com/2013/01/windows-phone-8-and-device-width/">Windows Phone 8 and Device-Width</a>.</p>
       
   827     <p>As a heads up, we include this in the Bootstrap docs as an example.</p>
       
   828 
       
   829     <h3 id="safari-percentages">Safari percent rounding</h3>
       
   830     <p>As of Safari v6.1 for OS X and Safari for iOS v7.0.1, Safari's rendering engine has some trouble with the number of decimal places used in our <code>.col-*-1</code> grid classes. So if you have 12 individual grid columns, you'll notice that they come up short compared to other rows of columns. We can't do much here (<a href="https://github.com/twbs/bootstrap/issues/9282">see #9282</a>) but you do have some options:</p>
       
   831     <ul>
       
   832       <li>Add <code>.pull-right</code> to your last grid column to get the hard-right alignment</li>
       
   833       <li>Tweak your percentages manually to get the perfect rounding for Safari (more difficult than the first option)</li>
       
   834     </ul>
       
   835     <p>We'll keep an eye on this though and update our code if we have an easy solution.</p>
       
   836 
       
   837     <h3 id="mobile-modals">Modals and mobile devices</h3>
       
   838     <h4>Overflow and scrolling</h4>
       
   839     <p>Support for <code>overflow: hidden</code> on the <code>&lt;body&gt;</code> element is quite limited in iOS and Android. To that end, when you scroll past the top or bottom of a modal in either of those devices' browsers, the <code>&lt;body&gt;</code> content will begin to scroll.</p>
       
   840     <h4>Virtual keyboards</h4>
       
   841     <p>Also, note that if you're using inputs in your modal – iOS has a rendering bug that doesn't update the position of fixed elements when the virtual keyboard is triggered. A few workarounds for this include transforming your elements to <code>position: absolute</code> or invoking a timer on focus to try to correct the positioning manually. This is not handled by Bootstrap, so it is up to you to decide which solution is best for your application.</p>
       
   842 
       
   843     <h3 id="browser-zoom">Browser zooming</h3>
       
   844     <p>Page zooming inevitably presents rendering artifacts in some components, both in Bootstrap and the rest of the web. Depending on the issue, we may be able to fix it (search first and then open an issue if need be). However, we tend to ignore these as they often have no direct solution other than hacky workarounds.</p>
       
   845   </div>
       
   846 
       
   847 
       
   848   <!-- Third party support
       
   849   ================================================== -->
       
   850   <div class="bs-docs-section">
       
   851     <div class="page-header">
       
   852       <h1 id="third-parties">Third party support</h1>
       
   853     </div>
       
   854     <p class="lead">While we don't officially support any third party plugins or add-ons, we do offer some useful advice to help avoid potential issues in your projects.</p>
       
   855 
       
   856     <h3>Box-sizing</h3>
       
   857     <p>Some third party software, including Google Maps and Google Custom Search Engine, conflict with Bootstrap due to <code>* { box-sizing: border-box; }</code>, a rule which makes it so <code>padding</code> does not affect the final computed width of an element. Learn more about <a href="http://css-tricks.com/box-sizing/">box model and sizing at CSS Tricks</a>.</p>
       
   858     <p>Depending on the context, you may override as-needed (Option 1) or reset the box-sizing for entire regions (Option 2).</p>
       
   859 {% highlight css %}
       
   860 /* Box-sizing resets
       
   861  *
       
   862  * Reset individual elements or override regions to avoid conflicts due to
       
   863  * global box model settings of Bootstrap. Two options, individual overrides and
       
   864  * region resets, are available as plain CSS and uncompiled LESS formats.
       
   865  */
       
   866 
       
   867 /* Option 1A: Override a single element's box model via CSS */
       
   868 .element {
       
   869   -webkit-box-sizing: content-box;
       
   870      -moz-box-sizing: content-box;
       
   871           box-sizing: content-box;
       
   872 }
       
   873 
       
   874 /* Option 1B: Override a single element's box model by using a Bootstrap LESS mixin */
       
   875 .element {
       
   876   .box-sizing(content-box);
       
   877 }
       
   878 
       
   879 /* Option 2A: Reset an entire region via CSS */
       
   880 .reset-box-sizing,
       
   881 .reset-box-sizing *,
       
   882 .reset-box-sizing *:before,
       
   883 .reset-box-sizing *:after {
       
   884   -webkit-box-sizing: content-box;
       
   885      -moz-box-sizing: content-box;
       
   886           box-sizing: content-box;
       
   887 }
       
   888 
       
   889 /* Option 2B: Reset an entire region with a custom LESS mixin */
       
   890 .reset-box-sizing {
       
   891   &,
       
   892   *,
       
   893   *:before,
       
   894   *:after {
       
   895     .box-sizing(content-box);
       
   896   }
       
   897 }
       
   898 .element {
       
   899   .reset-box-sizing();
       
   900 }
       
   901 {% endhighlight %}
       
   902   </div>
       
   903 
       
   904 
       
   905   <!-- Accessibility
       
   906   ================================================== -->
       
   907   <div class="bs-docs-section">
       
   908     <div class="page-header">
       
   909       <h1 id="accessibility">Accessibility</h1>
       
   910     </div>
       
   911     <p class="lead">Bootstrap follows common web standards, and with minimal extra effort, can be used to create sites that are accessible to those using <abbr title="Assistive Technology" class="initialism">AT</abbr>.</p>
       
   912 
       
   913     <h3>Skip navigation</h3>
       
   914     <p>If your navigation contains many links and comes before the main content in the DOM, add a <code>Skip to main content</code> link immediately after your opening <code>&lt;body&gt;</code> tag. <a href="http://a11yproject.com/posts/skip-nav-links/">(read why)</a></p>
       
   915 {% highlight html %}
       
   916 <body>
       
   917   <a href="#content" class="sr-only">Skip to main content</a>
       
   918   <div class="container" id="content">
       
   919     The main page content.
       
   920   </div>
       
   921 </body>
       
   922 {% endhighlight %}
       
   923 
       
   924     <h3>Nested headings</h3>
       
   925     <p>When nesting headings (<code>&lt;h1&gt;</code> - <code>&lt;h6&gt;</code>), your primary document header should be an <code>&lt;h1&gt;</code>. Subsequent headings should make logical use of <code>&lt;h2&gt;</code> - <code>&lt;h6&gt;</code> such that screen readers can construct a table of contents for your pages.</p>
       
   926     <p>Learn more at <a href="http://squizlabs.github.io/HTML_CodeSniffer/Standards/Section508/">HTML CodeSniffer</a> and <a href="http://accessibility.psu.edu/headings">Penn State's AccessAbility</a>.</p>
       
   927 
       
   928     <h3>Additional resources</h3>
       
   929     <ul>
       
   930       <li><a href="https://github.com/squizlabs/HTML_CodeSniffer">"HTML Codesniffer" bookmarklet for identifying accessibility issues</a></li>
       
   931       <li><a href="http://a11yproject.com/">The A11Y Project</a></li>
       
   932       <li><a href="https://developer.mozilla.org/en-US/docs/Accessibility">MDN accessibility documentation</a></li>
       
   933     </ul>
       
   934   </div>
       
   935 
       
   936 
       
   937   <!-- License FAQs
       
   938   ================================================== -->
       
   939   <div class="bs-docs-section">
       
   940     <div class="page-header">
       
   941       <h1 id="license-faqs">License FAQs</h1>
       
   942     </div>
       
   943     <p class="lead">Bootstrap is released under the Apache 2 license and is copyright {{ site.time | date: "%Y" }} Twitter. Boiled down to smaller chunks, it can be described with the following conditions.</p>
       
   944 
       
   945     <div class="row">
       
   946       <div class="col-12 col-lg-6">
       
   947         <h4>It allows you to:</h4>
       
   948         <ul>
       
   949           <li>Freely download and use Bootstrap, in whole or in part, for personal, company internal or commercial purposes</li>
       
   950           <li>Use Bootstrap in packages or distributions that you create</li>
       
   951         </ul>
       
   952       </div>
       
   953       <div class="col-12 col-lg-6">
       
   954         <h4>It forbids you to:</h4>
       
   955         <ul>
       
   956           <li>Redistribute any piece of Bootstrap without proper attribution</li>
       
   957           <li>Use any marks owned by Twitter in any way that might state or imply that Twitter endorses your distribution</li>
       
   958           <li>Use any marks owned by Twitter in any way that might state or imply that you created the Twitter software in question</li>
       
   959         </ul>
       
   960       </div>
       
   961     </div>
       
   962     <div class="row">
       
   963       <div class="col-12 col-lg-6">
       
   964         <h4>It requires you to:</h4>
       
   965         <ul>
       
   966           <li>Include a copy of the license in any redistribution you may make that includes Bootstrap</li>
       
   967           <li>Provide clear attribution to Twitter for any distributions that include Bootstrap</li>
       
   968         </ul>
       
   969       </div>
       
   970       <div class="col-12 col-lg-6">
       
   971         <h4>It does not require you to:</h4>
       
   972         <ul>
       
   973           <li>Include the source of Bootstrap itself, or of any modifications you may have made to it, in any redistribution you may assemble that includes it</li>
       
   974           <li>Submit changes that you make to Bootstrap back to the Bootstrap project (though such feedback is encouraged)</li>
       
   975         </ul>
       
   976       </div>
       
   977     </div>
       
   978     <p>The full Bootstrap license is located <a href="{{ site.repo }}/blob/master/README.md">in the project repository</a> for more information.</p>
       
   979   </div><!-- /.bs-docs-section -->
       
   980 
       
   981 
       
   982   <div class="bs-docs-section">
       
   983     <div class="page-header">
       
   984       <h1 id="customizing">Customizing Bootstrap</h1>
       
   985     </div>
       
   986     <p class="lead">Bootstrap is best maintained when you treat it as a separate and independently-versioned dependency in your development environment. Doing this makes upgrading Bootstrap easier in the future.</p>
       
   987 
       
   988     <p>Once you've downloaded and included Bootstrap's styles and scripts, you can customize its components. Just create a new stylesheet (LESS, if you like, or just plain CSS) to house your customizations.</p>
       
   989 
       
   990     <div class="bs-callout bs-callout-info">
       
   991       <h4>Compiled or minified?</h4>
       
   992       <p>Unless you plan on reading the CSS, go with minified stylesheets. It's the same code, just compacted. Minified styles use less bandwidth, which is good, especially in production environments.</p>
       
   993     </div>
       
   994 
       
   995     <p>From there, include whatever Bootstrap components and HTML content you need to create templates for your site's pages.</p>
       
   996 
       
   997     <h3>Customizing components</h3>
       
   998     <p>You can customize components to varying degrees, but most fall into two camps: <em>light customizations</em> and <em>overhauls</em>. Plenty examples of both are available from third parties.</p>
       
   999     <p>We define <em>light customizations</em> as superficial changes, for example, color and font changes to existing Bootstrap components. A light customization example is the <a href="http://translate.twitter.com">Twitter Translation Center</a> (coded by <a href="https://twitter.com/mdo">@mdo</a>). Let's look at how to implement the custom button we wrote for this site, <code>.btn-ttc</code>.</p>
       
  1000     <p>The stock Bootstrap buttons require just one class, <code>.btn</code>, to start.  Here we extend the <code>.btn</code> style with a new modifier class, <code>.btn-ttc</code>, that we will create. This gives us a distinct custom look with minimal effort.</p>
       
  1001     <p>Our customized button will be coded like this:</p>
       
  1002 {% highlight html %}
       
  1003 <button type="button" class="btn btn-ttc">Save changes</button>
       
  1004 {% endhighlight %}
       
  1005     <p>Note how <code>.btn-ttc</code> is added to the standard <code>.btn</code> class.</p>
       
  1006 
       
  1007     <p>To implement this, in the custom stylesheet, add the following CSS:</p>
       
  1008 
       
  1009 {% highlight css %}
       
  1010 /* Custom button
       
  1011 -------------------------------------------------- */
       
  1012 
       
  1013 /* Override base .btn styles */
       
  1014 /* Apply text and background changes to three key states: default, hover, and active (click). */
       
  1015 .btn-ttc,
       
  1016 .btn-ttc:hover,
       
  1017 .btn-ttc:active {
       
  1018   color: white;
       
  1019   text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
       
  1020   background-color: #007da7;
       
  1021 }
       
  1022 
       
  1023 /* Apply the custom-colored gradients */
       
  1024 /* Note: you'll need to include all the appropriate gradients for various browsers and standards. */
       
  1025 .btn-ttc {
       
  1026   background-repeat: repeat-x;
       
  1027   background-image: linear-gradient(top, #009ED2 0%, #007DA7 100%);
       
  1028   ...
       
  1029 }
       
  1030 
       
  1031 /* Set the hover state */
       
  1032 /* An easy hover state is just to move the gradient up a small amount. Add other embellishments as you see fit. */
       
  1033 .btn-ttc:hover {
       
  1034   background-position: 0 -15px;
       
  1035 }
       
  1036 {% endhighlight %}
       
  1037 
       
  1038     <p>In short: Look to the style source and duplicate the selectors you need for your modifications.</p>
       
  1039     <p><strong>In summary, here's the basic workflow:</strong></p>
       
  1040     <ul>
       
  1041       <li>For each element you want to customize, find its code in the compiled Bootstrap CSS.</li>
       
  1042       <li>Copy the component's selector and styles and paste them in your custom stylesheet. For instance, to customize the navbar background, just copy the <code>.navbar</code> style specification.</li>
       
  1043       <li>In your custom stylesheet, edit the CSS you just copied from the Bootstrap source. No need for prepending additional classes, or appending <code>!important</code> here.  Keep it simple.</li>
       
  1044       <li>Rinse and repeat until you're happy with your customizations.</li>
       
  1045     </ul>
       
  1046     <p>Once you are comfortable performing light customizations, visual overhauls are just as straightforward. For a site like <a href="http://yourkarma.com">Karma</a>, which uses Bootstrap as a CSS reset with heavy modifications, more extensive work is involved.  But the same principle applies: include Bootstrap's default stylesheet first, then apply your custom stylesheet.</p>
       
  1047 
       
  1048     <div class="bs-callout bs-callout-info">
       
  1049       <h4>Alternate customization methods</h4>
       
  1050       <p>While not recommended for folks new to Bootstrap, you may use one of two alternate methods for customization. The first is modifying the source <code>.less</code> files (making upgrades super difficult), and the second is mapping source LESS code to <a href="http://ruby.bvision.com/blog/please-stop-embedding-bootstrap-classes-in-your-html">your own classes via mixins</a>. For the time being, neither of those options are documented here.</p>
       
  1051     </div>
       
  1052 
       
  1053     <h3>Removing potential bloat</h3>
       
  1054     <p>Not all sites and applications need to make use of everything Bootstrap has to offer, especially in production environments where optimizing bandwidth is an issue. We encourage you to remove whatever is unused with our <a href="../customize/">Customizer</a>.</p>
       
  1055     <p>Using the Customizer, simply uncheck any component, feature, or asset you don't need. Hit download and swap out the default Bootstrap files with these newly customized ones. You'll get vanilla Bootstrap, but without the features *you* deem unnecessary. All custom builds include compiled and minified versions, so use whichever works for you.</p>
       
  1056 
       
  1057   </div>
Impressum Datenschutzerklärung