diff options
| author | Mark Otto <[email protected]> | 2013-08-27 08:05:54 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-27 08:05:54 -0700 |
| commit | 4b68858f906a936cf3b1cee5266010556483bce8 (patch) | |
| tree | d9f7ee49da0029e3014f13c0886a5343107aabf2 /components.html | |
| parent | 1445e09b5fcd8112e9753aa47c6df9c558782dd5 (diff) | |
| parent | b2b91a0a34f80ec05123a11d209d39be943ec054 (diff) | |
| download | bootstrap-4b68858f906a936cf3b1cee5266010556483bce8.tar.xz bootstrap-4b68858f906a936cf3b1cee5266010556483bce8.zip | |
Merge branch 'master' of github.com:twbs/bootstrap
Diffstat (limited to 'components.html')
| -rw-r--r-- | components.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/components.html b/components.html index 627327647..c2e0e261a 100644 --- a/components.html +++ b/components.html @@ -558,9 +558,9 @@ base_url: "../" <div class="bs-example"> <div class="btn-group btn-group-justified"> - <button type="button" class="btn btn-default">Left</button> - <button type="button" class="btn btn-default">Middle</button> - <button type="button" class="btn btn-default">Right</button> + <a class="btn btn-default" role="button">Left</a> + <a class="btn btn-default" role="button">Middle</a> + <a class="btn btn-default" role="button">Right</a> </div> </div> {% highlight html %} @@ -2209,13 +2209,13 @@ body { padding-bottom: 70px; } <h2 id="alerts-dismissable">Dismissable alerts</h2> <p>Build on any alert by adding an optional <code>.alert-dismissable</code> and close button.</p> <div class="bs-example"> - <div class="alert alert-dismissable"> + <div class="alert alert-warning alert-dismissable"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <strong>Warning!</strong> Best check yo self, you're not looking too good. </div> </div> {% highlight html %} -<div class="alert alert-dismissable"> +<div class="alert alert-warning alert-dismissable"> <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> <strong>Warning!</strong> Best check yo self, you're not looking too good. </div> |
