Download

Bootstrap (derzeit v3.4.1) bietet einige einfache Möglichkeiten, um schnell loszulegen, wobei jede für ein anderes Fertigkeitsniveau und einen anderen Anwendungsfall geeignet ist. Lesen Sie durch, um zu sehen, was Ihren speziellen Bedürfnissen entspricht.

Bootstrap

Kompiliertes und minimiertes CSS, JavaScript und Schriftarten. Es sind keine Dokumente oder Originalquelldateien enthalten.

Bootstrap herunterladen

Quellcode

Source Less-, JavaScript- und Schriftartdateien sowie unsere Dokumente. Erfordert einen Less-Compiler und einige Einstellungen.

Quelle herunterladen

Sass

Bootstrap wurde von Less nach Sass portiert, um es einfach in Rails-, Compass- oder reine Sass-Projekte einzufügen.

Sass herunterladen

jsLieferung

Die Leute von jsDelivr bieten freundlicherweise CDN-Unterstützung für CSS und JavaScript von Bootstrap. Verwenden Sie einfach diese jsDelivr- Links.

<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">

<!-- Optional theme -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap-theme.min.css" integrity="sha384-6pzBo3FDv/PJ8r2KRkGHifhEocL+1X2rVCTTkUfGk7/0pbek5mMa1upzvWbrUbOZ" crossorigin="anonymous">

<!-- Latest compiled and minified JavaScript -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>

Mit Bower installieren

Sie können Bootstrap’s Less, CSS, JavaScript und Schriftarten auch mit Bower installieren und verwalten :

bower install bootstrap

Mit npm installieren

Sie können Bootstrap auch mit npm installieren :

npm install bootstrap@3

require('bootstrap')lädt alle jQuery-Plugins von Bootstrap in das jQuery-Objekt. Das bootstrapModul selbst exportiert nichts. Sie können die jQuery-Plugins von Bootstrap einzeln manuell laden, indem Sie die /js/*.jsDateien im Verzeichnis der obersten Ebene des Pakets laden.

Bootstrap package.jsonenthält einige zusätzliche Metadaten unter den folgenden Schlüsseln:

  • less- Pfad zur wichtigsten Less - Quelldatei von Bootstrap
  • style- Pfad zum nicht minimierten CSS von Bootstrap, das mit den Standardeinstellungen vorkompiliert wurde (keine Anpassung)

Mit Composer installieren

Sie können Bootstrap’s Less, CSS, JavaScript und Schriftarten auch mit Composer installieren und verwalten :

composer require twbs/bootstrap

Autoprefixer für Less/Sass erforderlich

Bootstrap verwendet Autoprefixer , um mit CSS-Anbieterpräfixen umzugehen . Wenn Sie Bootstrap aus seiner Less/Sass-Quelle kompilieren und nicht unser Gruntfile verwenden, müssen Sie Autoprefixer selbst in Ihren Build-Prozess integrieren. Wenn Sie vorkompilierten Bootstrap oder unser Gruntfile verwenden, müssen Sie sich darüber keine Gedanken machen, da Autoprefixer bereits in unserem Gruntfile integriert ist.

Was ist inbegriffen

Bootstrap kann in zwei Formen heruntergeladen werden, in denen Sie die folgenden Verzeichnisse und Dateien finden, die gemeinsame Ressourcen logisch gruppieren und sowohl kompilierte als auch minimierte Variationen bereitstellen.

jQuery erforderlich

Bitte beachten Sie, dass alle JavaScript-Plug-ins die Einbindung von jQuery erfordern , wie im Starter-Template gezeigt . Konsultieren Sie unserebower.json , um zu sehen, welche Versionen von jQuery unterstützt werden.

Vorkompilierter Bootstrap

Entpacken Sie nach dem Herunterladen den komprimierten Ordner, um die Struktur von (dem kompilierten) Bootstrap anzuzeigen. Sie werden so etwas sehen:

bootstrap/
├── css/
│   ├── bootstrap.css
│   ├── bootstrap.css.map
│   ├── bootstrap.min.css
│   ├── bootstrap.min.css.map
│   ├── bootstrap-theme.css
│   ├── bootstrap-theme.css.map
│   ├── bootstrap-theme.min.css
│   └── bootstrap-theme.min.css.map
├── js/
│   ├── bootstrap.js
│   └── bootstrap.min.js
└── fonts/
    ├── glyphicons-halflings-regular.eot
    ├── glyphicons-halflings-regular.svg
    ├── glyphicons-halflings-regular.ttf
    ├── glyphicons-halflings-regular.woff
    └── glyphicons-halflings-regular.woff2

Dies ist die grundlegendste Form von Bootstrap: vorkompilierte Dateien für die schnelle Drop-in-Nutzung in fast jedem Webprojekt. Wir bieten kompiliertes CSS und JS ( bootstrap.*) sowie kompiliertes und minimiertes CSS und JS ( bootstrap.min.*). CSS -Quellzuordnungen ( bootstrap.*.map) sind für die Verwendung mit den Entwicklertools bestimmter Browser verfügbar. Schriftarten von Glyphicons sind ebenso enthalten wie das optionale Bootstrap-Design.

Bootstrap-Quellcode

Der Download des Bootstrap-Quellcodes enthält die vorkompilierten CSS-, JavaScript- und Schriftart-Assets sowie Source Less, JavaScript und Dokumentation. Genauer gesagt umfasst es Folgendes und mehr:

bootstrap/
├── less/
├── js/
├── fonts/
├── dist/
│   ├── css/
│   ├── js/
│   └── fonts/
└── docs/
    └── examples/

Die less/, js/, und fonts/sind der Quellcode für unsere CSS-, JS- und Icon-Fonts (jeweils). Der dist/Ordner enthält alles, was oben im vorkompilierten Download-Bereich aufgeführt ist. Der docs/Ordner enthält den Quellcode für unsere Dokumentation und die examples/Verwendung von Bootstrap. Darüber hinaus bietet jede andere enthaltene Datei Unterstützung für Pakete, Lizenzinformationen und Entwicklung.

Kompilieren von CSS und JavaScript

Bootstrap verwendet Grunt für sein Build-System mit praktischen Methoden zum Arbeiten mit dem Framework. So kompilieren wir unseren Code, führen Tests durch und vieles mehr.

Grunt installieren

Um Grunt zu installieren, müssen Sie zunächst node.js (einschließlich npm) herunterladen und installieren . npm steht für Node Packaged Modules und ist eine Möglichkeit, Entwicklungsabhängigkeiten über node.js zu verwalten.

Dann von der Kommandozeile:
  1. grunt-cliGlobal installieren mit npm install -g grunt-cli.
  2. Navigieren Sie zum Stammverzeichnis /bootstrap/und führen Sie dann npm install. npm sieht sich die package.jsonDatei an und installiert automatisch die dort aufgeführten notwendigen lokalen Abhängigkeiten.

Wenn Sie fertig sind, können Sie die verschiedenen Grunt-Befehle ausführen, die über die Befehlszeile bereitgestellt werden.

Verfügbare Grunt-Befehle

grunt dist(Einfach CSS und JavaScript kompilieren)

Erneuert das /dist/Verzeichnis mit kompilierten und minimierten CSS- und JavaScript-Dateien. Als Bootstrap-Benutzer ist dies normalerweise der gewünschte Befehl.

grunt watch(Uhr)

Überwacht die Less-Quelldateien und kompiliert sie automatisch neu in CSS, wenn Sie eine Änderung speichern.

grunt test(Tests ausführen)

Führt JSHint aus und führt die QUnit - Tests dank Karma in echten Browsern aus .

grunt docs(Dokument-Assets erstellen und testen)

Erstellt und testet CSS, JavaScript und andere Assets, die verwendet werden, wenn die Dokumentation lokal über bundle exec jekyll serve.

grunt(Absolut alles bauen und Tests durchführen)

Kompiliert und minimiert CSS und JavaScript, erstellt die Dokumentations-Website, führt den HTML5-Validator gegen die Dokumente aus, generiert die Customizer-Assets neu und vieles mehr. Benötigt Jekyll . Normalerweise nur notwendig, wenn Sie Bootstrap selbst hacken.

Fehlerbehebung

Sollten Sie Probleme beim Installieren von Abhängigkeiten oder beim Ausführen von Grunt-Befehlen haben, löschen Sie zunächst das /node_modules/von npm generierte Verzeichnis. Führen Sie dann erneut aus npm install.

Grundlegende Vorlage

Beginnen Sie mit dieser einfachen HTML-Vorlage oder ändern Sie diese Beispiele . Wir hoffen, dass Sie unsere Vorlagen und Beispiele anpassen und an Ihre Bedürfnisse anpassen.

Kopieren Sie den folgenden HTML-Code, um mit der Arbeit mit einem minimalen Bootstrap-Dokument zu beginnen.

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
    <title>Bootstrap 101 Template</title>

    <!-- Bootstrap -->
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-HSMxcRTRxnN+Bdg0JdbxYKrThecOKuH5zCYotlSAcp1+c8xmyTe9GYg1l9a69psu" crossorigin="anonymous">

    <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
    <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
    <!--[if lt IE 9]>
      <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/html5shiv.min.js"></script>
      <script src="https://cdn.jsdelivr.net/npm/[email protected]/dest/respond.min.js"></script>
    <![endif]-->
  </head>
  <body>
    <h1>Hello, world!</h1>

    <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
    <script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ" crossorigin="anonymous"></script>
    <!-- Include all compiled plugins (below), or include individual files as needed -->
    <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-aJ21OjlMXNL5UyIl/XNwTMqvzeRMZH2w8c5cRVpzpU8Y5bApTppSuUkhZXN0VxHd" crossorigin="anonymous"></script>
  </body>
</html>

Beispiele

Bauen Sie mit den vielen Komponenten von Bootstrap auf der obigen Basisvorlage auf. Wir empfehlen Ihnen, Bootstrap an die Anforderungen Ihres individuellen Projekts anzupassen und anzupassen.

Holen Sie sich den Quellcode für jedes Beispiel unten, indem Sie das Bootstrap-Repository herunterladen . Beispiele finden Sie im docs/examples/Verzeichnis.

Verwenden des Rahmens

Beispiel für eine Startervorlage

Starter-Vorlage

Nichts als die Grundlagen: kompiliertes CSS und JavaScript zusammen mit einem Container.

Beispiel für ein Bootstrap-Design

Bootstrap-Thema

Laden Sie das optionale Bootstrap-Design für ein visuell verbessertes Erlebnis.

Beispiel für mehrere Raster

Gitter

Mehrere Beispiele für Rasterlayouts mit allen vier Ebenen, Verschachtelung und mehr.

Beispiel Jumbotron

Jumbotron

Bauen Sie mit einer Navigationsleiste und einigen einfachen Gittersäulen um das Jumbotron herum.

Beispiel für ein schmales Jumbotron

Schmales Jumbotron

Erstellen Sie eine benutzerdefiniertere Seite, indem Sie den Standardcontainer und Jumbotron einschränken.

Navigationsleisten in Aktion

Navbar-Beispiel

Navigationsleiste

Super einfache Vorlage, die die Navigationsleiste zusammen mit einigen zusätzlichen Inhalten enthält.

Beispiel für eine statische obere Navigationsleiste

Statische obere Navigationsleiste

Super einfache Vorlage mit einer statischen oberen Navigationsleiste und einigen zusätzlichen Inhalten.

Beispiel für Navigationsleiste behoben

Navigationsleiste behoben

Super einfache Vorlage mit einer festen oberen Navigationsleiste und einigen zusätzlichen Inhalten.

Benutzerdefinierte Komponenten

Ein Beispiel für eine einseitige Vorlage

Abdeckung

Eine einseitige Vorlage zum Erstellen einfacher und schöner Homepages.

Beispiel Karussell

Karussell

Passen Sie die Navigationsleiste und das Karussell an und fügen Sie dann einige neue Komponenten hinzu.

Beispiel für ein Blog-Layout

Bloggen

Einfaches zweispaltiges Blog-Layout mit benutzerdefinierter Navigation, Kopfzeile und Typ.

Dashboard-Beispiel

Armaturenbrett

Grundstruktur für ein Admin-Dashboard mit fester Sidebar und Navbar.

Beispiel für eine Anmeldeseite

Anmeldeseite

Benutzerdefiniertes Formularlayout und -design für ein einfaches Anmeldeformular.

Beispiel für gerechtfertigte Navigation

Gerechtfertigte Navigation

Erstellen Sie eine benutzerdefinierte Navigationsleiste mit gerechtfertigten Links. Kopf hoch! Nicht zu Safari-freundlich.

Beispiel für eine klebrige Fußzeile

Klebrige Fußzeile

Fügen Sie eine Fußzeile am unteren Rand des Ansichtsfensters hinzu, wenn der Inhalt kürzer ist.

Sticky Footer mit Navbar-Beispiel

Sticky Footer mit Navigationsleiste

Fügen Sie eine Fußzeile am unteren Rand des Ansichtsfensters mit einer festen Navigationsleiste oben an.

Experimente

Nicht reagierendes Beispiel

Nicht reagierender Bootstrap

Deaktivieren Sie einfach die Reaktionsfähigkeit von Bootstrap gemäß unserer Dokumentation .

Beispiel für eine Off-Canvas-Navigation

Off-Canvas

Erstellen Sie ein umschaltbares Off-Canvas-Navigationsmenü zur Verwendung mit Bootstrap.

Werkzeug

Bootlint

Bootlint ist das offizielle Bootstrap-HTML - Linter - Tool. Es sucht automatisch nach mehreren häufigen HTML-Fehlern in Webseiten, die Bootstrap auf ziemlich "Vanille"-Weise verwenden. Die Komponenten/Widgets von Vanilla Bootstrap erfordern, dass ihre Teile des DOM bestimmten Strukturen entsprechen. Bootlint überprüft, ob Instanzen von Bootstrap-Komponenten über korrekt strukturiertes HTML verfügen. Erwägen Sie, Bootlint zu Ihrer Bootstrap-Webentwicklungs-Toolchain hinzuzufügen, damit keiner der häufigsten Fehler die Entwicklung Ihres Projekts verlangsamt.

Gemeinschaft

Bleiben Sie über die Entwicklung von Bootstrap auf dem Laufenden und erreichen Sie die Community mit diesen hilfreichen Ressourcen.

  • Lesen und abonnieren Sie den offiziellen Bootstrap-Blog .
  • Chatten Sie mit anderen Bootstrappern über IRC auf dem irc.freenode.netServer im ##bootstrap-Kanal .
  • Wenn Sie Hilfe bei der Verwendung von Bootstrap benötigen, fragen Sie auf StackOverflow mit dem Tagtwitter-bootstrap-3 .
  • Entwickler sollten das Schlüsselwort bootstrapfür Pakete verwenden, die die Funktionalität von Bootstrap ändern oder erweitern, wenn sie über npm oder ähnliche Bereitstellungsmechanismen verteilt werden, um eine maximale Auffindbarkeit zu erreichen.
  • Finden Sie auf der Bootstrap Expo inspirierende Beispiele für People Building mit Bootstrap .

Sie können auch @getbootstrap auf Twitter folgen, um den neuesten Klatsch und tolle Musikvideos zu erhalten.

Reaktionsfähigkeit deaktivieren

Bootstrap passt Ihre Seiten automatisch an verschiedene Bildschirmgrößen an. So deaktivieren Sie diese Funktion, damit Ihre Seite wie in diesem nicht reagierenden Beispiel funktioniert .

Schritte zum Deaktivieren der Seitenreaktion

  1. Lassen Sie den in den CSS-Dokumenten<meta> erwähnten Viewport weg
  2. Überschreiben Sie die widthfür .containerjede Rasterebene mit einer einzigen Breite, z. B. width: 970px !important;Stellen Sie sicher, dass dies nach dem Standard-Bootstrap-CSS kommt. Sie können dies optional !importantmit Medienabfragen oder einigen Selektor-Fu vermeiden.
  3. Wenn Sie Navigationsleisten verwenden, entfernen Sie sämtliches Verhalten beim Einklappen und Erweitern der Navigationsleiste.
  4. Verwenden Sie für Rasterlayouts .col-xs-*Klassen zusätzlich zu oder anstelle von mittleren/großen Klassen. Keine Sorge, das extra kleine Geräteraster lässt sich auf alle Auflösungen skalieren.

You'll still need Respond.js for IE8 (since our media queries are still there and need to be processed). This disables the "mobile site" aspects of Bootstrap.

Bootstrap template with responsiveness disabled

We've applied these steps to an example. Read its source code to see the specific changes implemented.

View non-responsive example

Migrating from v2.x to v3.x

Looking to migrate from an older version of Bootstrap to v3.x? Check out our migration guide.

Browser and device support

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.

Supported browsers

Specifically, we support the latest versions of the following browsers and platforms.

Alternative browsers which use the latest version of WebKit, Blink, or Gecko, whether directly or via the platform's web view API, are not explicitly supported. However, Bootstrap should (in most cases) display and function correctly in these browsers as well. More specific support information is provided below.

Mobile devices

Generally speaking, Bootstrap supports the latest versions of each major platform's default browsers. Note that proxy browsers (such as Opera Mini, Opera Mobile's Turbo mode, UC Browser Mini, Amazon Silk) are not supported.

Chrome Firefox Safari
Android Supported Supported N/A
iOS Supported Supported Supported

Desktop browsers

Similarly, the latest versions of most desktop browsers are supported.

Chrome Firefox Internet Explorer Opera Safari
Mac Supported Supported N/A Supported Supported
Windows Supported Supported Supported Supported Not supported

On Windows, we support Internet Explorer 8-11.

For Firefox, in addition to the latest normal stable release, we also support the latest Extended Support Release (ESR) version of Firefox.

Unofficially, Bootstrap should look and behave well enough in Chromium and Chrome for Linux, Firefox for Linux, and Internet Explorer 7, as well as Microsoft Edge, though they are not officially supported.

For a list of some of the browser bugs that Bootstrap has to grapple with, see our Wall of browser bugs.

Internet Explorer 8 and 9

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, Internet Explorer 8 requires the use of Respond.js to enable media query support.

Feature Internet Explorer 8 Internet Explorer 9
border-radius Not supported Supported
box-shadow Not supported Supported
transform Not supported Supported, with -ms prefix
transition Not supported
placeholder Not supported

Visit Can I use... for details on browser support of CSS3 and HTML5 features.

Internet Explorer 8 and Respond.js

Beware of the following caveats when using Respond.js in your development and production environments for Internet Explorer 8.

Respond.js and cross-domain CSS

Using Respond.js with CSS hosted on a different (sub)domain (for example, on a CDN) requires some additional setup. See the Respond.js docs for details.

Respond.js and file://

Due to browser security rules, Respond.js doesn't work with pages viewed via the file:// protocol (like when opening a local HTML file). To test responsive features in IE8, view your pages over HTTP(S). See the Respond.js docs for details.

Respond.js and @import

Respond.js doesn't work with CSS that's referenced via @import. In particular, some Drupal configurations are known to use @import. See the Respond.js docs for details.

Internet Explorer 8 and box-sizing

IE8 does not fully support box-sizing: border-box; when combined with min-width, max-width, min-height, or max-height. For that reason, as of v3.0.1, we no longer use max-width on .containers.

Internet Explorer 8 and @font-face

IE8 has some issues with @font-face when combined with :before. Bootstrap uses that combination with its Glyphicons. If a page is cached, and loaded without the mouse over the window (i.e. hit the refresh button or load something in an iframe) then the page gets rendered before the font loads. Hovering over the page (body) will show some of the icons and hovering over the remaining icons will show those as well. See issue #13863 for details.

IE Compatibility modes

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 <meta> tag in your pages:

<meta http-equiv="X-UA-Compatible" content="IE=edge">

Confirm the document mode by opening the debugging tools: press F12 and check the "Document Mode".

This tag is included in all of Bootstrap's documentation and examples to ensure the best rendering possible in each supported version of Internet Explorer.

See this StackOverflow question for more information.

Internet Explorer 10 in Windows 8 and Windows Phone 8

Internet Explorer 10 doesn't differentiate device width from viewport width, 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:

@-ms-viewport       { width: device-width; }

However, this doesn't work for devices running Windows Phone 8 versions older than Update 3 (a.k.a. GDR3), as it causes such devices to show a mostly desktop view instead of narrow "phone" view. To address this, you'll need to include the following CSS and JavaScript to work around the bug.

@-ms-viewport       { width: device-width; }
@-o-viewport        { width: device-width; }
@viewport           { width: device-width; }
// Copyright 2014-2019 Twitter, Inc.
// Licensed under MIT (https://github.com/twbs/bootstrap/blob/v3-dev/LICENSE)
if (navigator.userAgent.match(/IEMobile\/10\.0/)) {
  var msViewportStyle = document.createElement('style')
  msViewportStyle.appendChild(
    document.createTextNode(
      '@-ms-viewport{width:auto!important}'
    )
  )
  document.querySelector('head').appendChild(msViewportStyle)
}

For more information and usage guidelines, read Windows Phone 8 and Device-Width.

As a heads up, we include this in all of Bootstrap's documentation and examples as a demonstration.

Safari percent rounding

The rendering engine of versions of Safari prior to v7.1 for OS X and Safari for iOS v8.0 had some trouble with the number of decimal places used in our .col-*-1 grid classes. So if you had 12 individual grid columns, you'd notice that they came up short compared to other rows of columns. Besides upgrading Safari/iOS, you have some options for workarounds:

  • Add .pull-right to your last grid column to get the hard-right alignment
  • Tweak your percentages manually to get the perfect rounding for Safari (more difficult than the first option)

Modals, navbars, and virtual keyboards

Overflow and scrolling

Support for overflow: hidden on the <body> 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 <body> content will begin to scroll. See Chrome bug #175502 (fixed in Chrome v40) and WebKit bug #153852.

iOS text fields and scrolling

As of iOS 9.3, while a modal is open, if the initial touch of a scroll gesture is within the boundary of a textual <input> or a <textarea>, the <body> content underneath the modal will be scrolled instead of the modal itself. See WebKit bug #153856.

Virtual keyboards

Also, note that if you're using a fixed navbar or using inputs within a 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 position: absolute 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.

The .dropdown-backdrop element isn't used on iOS in the nav because of the complexity of z-indexing. Thus, to close dropdowns in navbars, you must directly click the dropdown element (or any other element which will fire a click event in iOS).

Browser zooming

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.

Sticky :hover/:focus on mobile

Even though real hovering isn't possible on most touchscreens, most mobile browsers emulate hovering support and make :hover "sticky". In other words, :hover styles start applying after tapping an element and only stop applying after the user taps some other element. This can cause Bootstrap's :hover states to become undesirably "stuck" on such browsers. Some mobile browsers also make :focus similarly sticky. There is currently no simple workaround for these issues other than removing such styles entirely.

Printing

Even in some modern browsers, printing can be quirky.

In particular, as of Chrome v32 and regardless of margin settings, Chrome uses a viewport width significantly narrower than the physical paper size when resolving media queries while printing a webpage. This can result in Bootstrap's extra-small grid being unexpectedly activated when printing. See issue #12078 and Chrome bug #273306 for some details. Suggested workarounds:

  • Embrace the extra-small grid and make sure your page looks acceptable under it.
  • Customize the values of the @screen-* Less variables so that your printer paper is considered larger than extra-small.
  • Add custom media queries to change the grid size breakpoints for print media only.

Also, as of Safari v8.0, fixed-width .containers can cause Safari to use an unusually small font size when printing. See #14868 and WebKit bug #138192 for more details. One potential workaround for this is adding the following CSS:

@media print {
  .container {
    width: auto;
  }
}

Android stock browser

Out of the box, Android 4.1 (and even some newer releases apparently) ship with the Browser app as the default web browser of choice (as opposed to Chrome). Unfortunately, the Browser app has lots of bugs and inconsistencies with CSS in general.

Select menus

On <select> elements, the Android stock browser will not display the side controls if there is a border-radius and/or border applied. (See this StackOverflow question for details.) Use the snippet of code below to remove the offending CSS and render the <select> as an unstyled element on the Android stock browser. The user agent sniffing avoids interference with Chrome, Safari, and Mozilla browsers.

<script>
$(function () {
  var nua = navigator.userAgent
  var isAndroid = (nua.indexOf('Mozilla/5.0') > -1 && nua.indexOf('Android ') > -1 && nua.indexOf('AppleWebKit') > -1 && nua.indexOf('Chrome') === -1)
  if (isAndroid) {
    $('select.form-control').removeClass('form-control').css('width', '100%')
  }
})
</script>

Want to see an example? Check out this JS Bin demo.

Validators

In order to provide the best possible experience to old and buggy browsers, Bootstrap uses CSS browser hacks in several places to target special CSS to certain browser versions in order to work around bugs in the browsers themselves. These hacks understandably cause CSS validators to complain that they are invalid. In a couple places, we also use bleeding-edge CSS features that aren't yet fully standardized, but these are used purely for progressive enhancement.

These validation warnings don't matter in practice since the non-hacky portion of our CSS does fully validate and the hacky portions don't interfere with the proper functioning of the non-hacky portion, hence why we deliberately ignore these particular warnings.

Our HTML docs likewise have some trivial and inconsequential HTML validation warnings due to our inclusion of a workaround for a certain Firefox bug.

Third party support

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.

Box-sizing

Some third party software, including Google Maps and Google Custom Search Engine, conflict with Bootstrap due to * { box-sizing: border-box; }, a rule which makes it so padding does not affect the final computed width of an element. Learn more about box model and sizing at CSS Tricks.

Depending on the context, you may override as-needed (Option 1) or reset the box-sizing for entire regions (Option 2).

/* Box-sizing resets
 *
 * Reset individual elements or override regions to avoid conflicts due to
 * global box model settings of Bootstrap. Two options, individual overrides and
 * region resets, are available as plain CSS and uncompiled Less formats.
 */

/* Option 1A: Override a single element's box model via CSS */
.element {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}

/* Option 1B: Override a single element's box model by using a Bootstrap Less mixin */
.element {
  .box-sizing(content-box);
}

/* Option 2A: Reset an entire region via CSS */
.reset-box-sizing,
.reset-box-sizing *,
.reset-box-sizing *:before,
.reset-box-sizing *:after {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}

/* Option 2B: Reset an entire region with a custom Less mixin */
.reset-box-sizing {
  &,
  *,
  *:before,
  *:after {
    .box-sizing(content-box);
  }
}
.element {
  .reset-box-sizing();
}

Accessibility

Bootstrap follows common web standards and—with minimal extra effort—can be used to create sites that are accessible to those using AT.

Skip navigation

If your navigation contains many links and comes before the main content in the DOM, add a Skip to main content link before the navigation (for a simple explanation, see this A11Y Project article on skip navigation links). Using the .sr-only class will visually hide the skip link, and the .sr-only-focusable class will ensure that the link becomes visible once focused (for sighted keyboard users).

<body>
  <a href="#content" class="sr-only sr-only-focusable">Skip to main content</a>
  ...
  <div class="container" id="content" tabindex="-1">
    <!-- The main page content -->
  </div>
</body>

Nested headings

When nesting headings (<h1> - <h6>), your primary document header should be an <h1>. Subsequent headings should make logical use of <h2> - <h6> such that screen readers can construct a table of contents for your pages.

Learn more at HTML CodeSniffer and Penn State's AccessAbility.

Color contrast

Currently, some of the default color combinations available in Bootstrap (such as the various styled button classes, some of the code highlighting colors used for basic code blocks, the .bg-primary contextual background helper class, and the default link color when used on a white background) have a low contrast ratio (below the recommended ratio of 4.5:1). This can cause problems to users with low vision or who are color blind. These default colors may need to be modified to increase their contrast and legibility.

Additional resources

License FAQs

Bootstrap is released under the MIT license and is copyright 2019 Twitter. Boiled down to smaller chunks, it can be described with the following conditions.

It requires you to:

  • Keep the license and copyright notice included in Bootstrap's CSS and JavaScript files when you use them in your works

It permits you to:

  • Freely download and use Bootstrap, in whole or in part, for personal, private, company internal, or commercial purposes
  • Use Bootstrap in packages or distributions that you create
  • Modify the source code
  • Grant a sublicense to modify and distribute Bootstrap to third parties not included in the license

It forbids you to:

  • Hold the authors and license owners liable for damages as Bootstrap is provided without warranty
  • Hold the creators or copyright holders of Bootstrap liable
  • Redistribute any piece of Bootstrap without proper attribution
  • Use any marks owned by Twitter in any way that might state or imply that Twitter endorses your distribution
  • Use any marks owned by Twitter in any way that might state or imply that you created the Twitter software in question

It does not require you to:

  • 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
  • Submit changes that you make to Bootstrap back to the Bootstrap project (though such feedback is encouraged)

The full Bootstrap license is located in the project repository for more information.

Translations

Community members have translated Bootstrap's documentation into various languages. None are officially supported and they may not always be up to date.

Wir helfen nicht beim Organisieren oder Hosten von Übersetzungen, wir verlinken nur zu ihnen.

Eine neue oder bessere Übersetzung fertiggestellt? Öffnen Sie eine Pull-Anfrage, um sie unserer Liste hinzuzufügen.