You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap.
4
4
5
-
Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.
5
+
Release announcement posts on [the official Bootstrap blog](https://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -32,7 +32,7 @@ restrictions:
32
32
[`Normalize`](https://github.com/necolas/normalize.css) (open them in
33
33
its repository).
34
34
35
-
* Please **do not** open issues regarding the official themes offered on <http://themes.getbootstrap.com/>.
35
+
* Please **do not** open issues regarding the official themes offered on <https://themes.getbootstrap.com/>.
36
36
Instead, please email any questions or feedback regarding those themes to `themes AT getbootstrap DOT com`.
37
37
38
38
@@ -61,7 +61,7 @@ Good bug reports are extremely helpful, so thanks!
61
61
62
62
Guidelines for bug reports:
63
63
64
-
0.**Validate and lint your code**—[validate your HTML](http://html5.validator.nu)
64
+
0.**Validate and lint your code**—[validate your HTML](https://html5.validator.nu)
65
65
and [lint your HTML](https://github.com/twbs/bootlint) to ensure your
66
66
problem isn't caused by a simple error in your own code.
67
67
@@ -73,7 +73,7 @@ Guidelines for bug reports:
73
73
74
74
3.**Isolate the problem**— ideally create a [reduced test
75
75
case](https://css-tricks.com/reduced-test-cases/) and a live example.
76
-
[This JS Bin](http://jsbin.com/qusafa/edit?html,output) is a helpful template.
76
+
[This JS Bin](https://jsbin.com/qusafa/edit?html,output) is a helpful template.
77
77
78
78
79
79
A good bug report shouldn't leave others needing to chase you up for more
@@ -104,7 +104,7 @@ Example:
104
104
### Reporting upstream browser bugs
105
105
106
106
Sometimes bugs reported to us are actually caused by bugs in the browser(s) themselves, not bugs in Bootstrap per se.
107
-
When feasible, we aim to report such upstream bugs to the relevant browser vendor(s), and then list them on our [Wall of Browser Bugs](http://getbootstrap.com/browser-bugs/) and [document them in MDN](https://developer.mozilla.org/en-US/docs/Web).
107
+
When feasible, we aim to report such upstream bugs to the relevant browser vendor(s), and then list them on our [Wall of Browser Bugs](https://getbootstrap.com/browser-bugs/) and [document them in MDN](https://developer.mozilla.org/en-US/docs/Web).
@@ -232,16 +232,16 @@ includes code changes) and under the terms of the
232
232
233
233
[Adhere to the Code Guide.](http://codeguide.co/#css)
234
234
235
-
- When feasible, default color palettes should comply with [WCAG color contrast guidelines](http://www.w3.org/TR/WCAG20/#visual-audio-contrast).
236
-
- Except in rare cases, don't remove default `:focus` styles (via e.g. `outline: none;`) without providing alternative styles. See [this A11Y Project post](http://a11yproject.com/posts/never-remove-css-outlines) for more details.
235
+
- When feasible, default color palettes should comply with [WCAG color contrast guidelines](https://www.w3.org/TR/WCAG20/#visual-audio-contrast).
236
+
- Except in rare cases, don't remove default `:focus` styles (via e.g. `outline: none;`) without providing alternative styles. See [this A11Y Project post](http://a11yproject.com/posts/never-remove-css-outlines/) for more details.
237
237
238
238
### JS
239
239
240
240
- No semicolons (in client-side JS)
241
241
- 2 spaces (no tabs)
242
242
- strict mode
243
243
- "Attractive"
244
-
- Don't use [jQuery event alias convenience methods](https://github.com/jquery/jquery/blob/master/src/event/alias.js) (such as `$().focus()`). Instead, use [`$().trigger(eventType, ...)`](http://api.jquery.com/trigger/) or [`$().on(eventType, ...)`](http://api.jquery.com/on/), depending on whether you're firing an event or listening for an event. (For example, `$().trigger('focus')` or `$().on('focus', function (event) { /* handle focus event */ })`) We do this to be compatible with custom builds of jQuery where the event aliases module has been excluded.
244
+
- Don't use [jQuery event alias convenience methods](https://github.com/jquery/jquery/blob/master/src/event/alias.js) (such as `$().focus()`). Instead, use [`$().trigger(eventType, ...)`](https://api.jquery.com/trigger/) or [`$().on(eventType, ...)`](https://api.jquery.com/on/), depending on whether you're firing an event or listening for an event. (For example, `$().trigger('focus')` or `$().on('focus', function (event) { /* handle focus event */ })`) We do this to be compatible with custom builds of jQuery where the event aliases module has been excluded.
Copy file name to clipboardExpand all lines: ISSUE_TEMPLATE.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
Before opening an issue:
2
2
3
3
-[Search for duplicate or closed issues](https://github.com/twbs/bootstrap/issues?utf8=%E2%9C%93&q=is%3Aissue)
4
-
-[Validate](http://validator.w3.org/nu/) and [lint](https://github.com/twbs/bootlint#in-the-browser) any HTML to avoid common problems
4
+
-[Validate](https://validator.w3.org/nu/) and [lint](https://github.com/twbs/bootlint#in-the-browser) any HTML to avoid common problems
5
5
- Prepare a [reduced test case](https://css-tricks.com/reduced-test-cases/) for any bugs
6
6
- Read the [contributing guidelines](https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md)
Bootstrap is a sleek, intuitive, and powerful front-end framework for faster and easier web development, created by [Mark Otto](https://twitter.com/mdo) and [Jacob Thornton](https://twitter.com/fat), and maintained by the [core team](https://github.com/orgs/twbs/people) with the massive support and involvement of the community.
16
16
17
-
To get started, check out <http://getbootstrap.com>!
17
+
To get started, check out <https://getbootstrap.com>!
18
18
19
19
## Table of contents
20
20
@@ -39,7 +39,7 @@ Several quick start options are available:
39
39
- Install with [Bower](https://bower.io): `bower install bootstrap#v4.0.0-alpha.4`
40
40
- Install with [NuGet](https://www.nuget.org): CSS: `Install-Package bootstrap -Pre` Sass: `Install-Package bootstrap.sass -Pre` (`-Pre` is only required until Bootstrap v4 has a stable release).
41
41
42
-
Read the [Getting started page](http://getbootstrap.com/getting-started/) for information on the framework contents, templates and examples, and more.
42
+
Read the [Getting started page](https://getbootstrap.com/getting-started/) for information on the framework contents, templates and examples, and more.
43
43
44
44
### What's included
45
45
@@ -67,7 +67,7 @@ Have a bug or a feature request? Please first read the [issue guidelines](https:
67
67
68
68
## Documentation
69
69
70
-
Bootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](http://jekyllrb.com) and publicly hosted on GitHub Pages at <http://getbootstrap.com>. The docs may also be run locally.
70
+
Bootstrap's documentation, included in this repo in the root directory, is built with [Jekyll](https://jekyllrb.com) and publicly hosted on GitHub Pages at <https://getbootstrap.com>. The docs may also be run locally.
71
71
72
72
### Running documentation locally
73
73
@@ -76,11 +76,11 @@ Bootstrap's documentation, included in this repo in the root directory, is built
76
76
3. From the root `/bootstrap` directory, run `bundle exec jekyll serve` in the command line.
77
77
4. Open <http://localhost:9001> in your browser, and voilà.
78
78
79
-
Learn more about using Jekyll by reading its [documentation](http://jekyllrb.com/docs/home/).
79
+
Learn more about using Jekyll by reading its [documentation](https://jekyllrb.com/docs/home/).
80
80
81
81
### Documentation for previous releases
82
82
83
-
Documentation for v2.3.2 has been made available for the time being at <http://getbootstrap.com/2.3.2/> while folks transition to Bootstrap 3.
83
+
Documentation for v2.3.2 has been made available for the time being at <https://getbootstrap.com/2.3.2/> while folks transition to Bootstrap 3.
84
84
85
85
[Previous releases](https://github.com/twbs/bootstrap/releases) and their documentation are also available for download.
86
86
@@ -101,7 +101,7 @@ Editor preferences are available in the [editor config](https://github.com/twbs/
101
101
Get updates on Bootstrap's development and chat with the project maintainers and community members.
102
102
103
103
- Follow [@getbootstrap on Twitter](https://twitter.com/getbootstrap).
104
-
- Read and subscribe to [The Official Bootstrap Blog](http://blog.getbootstrap.com).
104
+
- Read and subscribe to [The Official Bootstrap Blog](https://blog.getbootstrap.com).
105
105
- Join [the official Slack room](https://bootstrap-slack.herokuapp.com).
106
106
- Chat with fellow Bootstrappers in IRC. On the `irc.freenode.net` server, in the `##bootstrap` channel.
107
107
- Implementation help may be found at Stack Overflow (tagged [`bootstrap-4`](https://stackoverflow.com/questions/tagged/bootstrap-4)).
@@ -113,7 +113,7 @@ Get updates on Bootstrap's development and chat with the project maintainers and
113
113
114
114
For transparency into our release cycle and in striving to maintain backward compatibility, Bootstrap is maintained under [the Semantic Versioning guidelines](http://semver.org/). Sometimes we screw up, but we'll adhere to those rules whenever possible.
115
115
116
-
See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.
116
+
See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. Release announcement posts on [the official Bootstrap blog](https://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release.
Copy file name to clipboardExpand all lines: docs/about/brand.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: Documentation and examples for Bootstrap's logo and brand usage gui
5
5
group: about
6
6
---
7
7
8
-
Have a need for Bootstrap's brand resources? Great! We have only a few guidelines we follow, and in turn ask you to follow as well. These guidelines were inspired by MailChimp's [Brand Assets](http://mailchimp.com/about/brand-assets/).
8
+
Have a need for Bootstrap's brand resources? Great! We have only a few guidelines we follow, and in turn ask you to follow as well. These guidelines were inspired by MailChimp's [Brand Assets](https://mailchimp.com/about/brand-assets/).
Copy file name to clipboardExpand all lines: docs/components/card.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -142,7 +142,7 @@ Using custom widths:
142
142
143
143
## Text alignment
144
144
145
-
You can quickly change the text alignment of any card—in its entirety or specific parts—with our [text align classes]({{ site.baseurl }}/components/utilities/#text-alignment).
145
+
You can quickly change the text alignment of any card—in its entirety or specific parts—with our [text align classes]({{ site.baseurl }}/utilities/typography/#text-alignment).
146
146
147
147
{% example html %}
148
148
<divclass="card card-block">
@@ -435,7 +435,7 @@ In need of a colored card, but not the hefty background colors they bring? Repla
435
435
436
436
## Groups
437
437
438
-
Use card groups to render cards as a single, attached element with equal width and height columns. By default, card groups use `display: table;` and `table-layout: fixed;` to achieve their uniform sizing. However, enabling [flexbox mode]({{ site.baseurl }}/getting-started/flexbox) can switch that to use `display: flex;` and provide the same effect.
438
+
Use card groups to render cards as a single, attached element with equal width and height columns. By default, card groups use `display: table;` and `table-layout: fixed;` to achieve their uniform sizing. However, enabling [flexbox mode]({{ site.baseurl }}/getting-started/flexbox/) can switch that to use `display: flex;` and provide the same effect.
Copy file name to clipboardExpand all lines: docs/components/carousel.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: A slideshow component for cycling through elements—images or slid
5
5
group: components
6
6
---
7
7
8
-
A slideshow component for cycling through elements—images or slides of text—like a carousel. In browsers where the [Page Visibility API](http://www.w3.org/TR/page-visibility/) is supported, the carousel will avoid sliding when the webpage is not visible to the user (such as when the browser tab is inactive, the browser window is minimized, etc.). **Nested carousels are not supported.**
8
+
A slideshow component for cycling through elements—images or slides of text—like a carousel. In browsers where the [Page Visibility API](https://www.w3.org/TR/page-visibility/) is supported, the carousel will avoid sliding when the webpage is not visible to the user (such as when the browser tab is inactive, the browser window is minimized, etc.). **Nested carousels are not supported.**
0 commit comments