mirror of https://github.com/twbs/bootstrap.git
Docs: use `Example` shortcode instead of divs with only `.bd-example` class (#41556)
BrowserStack / browserstack (push) Has been cancelled
Details
Bundlewatch / bundlewatch (push) Has been cancelled
Details
CodeQL / Analyze (push) Has been cancelled
Details
cspell / cspell (push) Has been cancelled
Details
CSS / css (push) Has been cancelled
Details
Docs / docs (push) Has been cancelled
Details
JS Tests / JS Tests (push) Has been cancelled
Details
Lint / lint (push) Has been cancelled
Details
CSS (node-sass) / css (push) Has been cancelled
Details
Release notes / update_release_draft (push) Has been cancelled
Details
BrowserStack / browserstack (push) Has been cancelled
Details
Bundlewatch / bundlewatch (push) Has been cancelled
Details
CodeQL / Analyze (push) Has been cancelled
Details
cspell / cspell (push) Has been cancelled
Details
CSS / css (push) Has been cancelled
Details
Docs / docs (push) Has been cancelled
Details
JS Tests / JS Tests (push) Has been cancelled
Details
Lint / lint (push) Has been cancelled
Details
CSS (node-sass) / css (push) Has been cancelled
Details
Release notes / update_release_draft (push) Has been cancelled
Details
This commit is contained in:
parent
094fb64680
commit
b851a994bd
|
@ -1418,7 +1418,7 @@ import Placeholder from "@shortcodes/Placeholder.astro"
|
|||
</div>
|
||||
|
||||
<div>
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<nav id="navbar-example2" class="navbar bg-body-tertiary px-3">
|
||||
<a class="navbar-brand" href="#">شريط التنقل</a>
|
||||
<ul class="nav nav-pills">
|
||||
|
@ -1452,7 +1452,7 @@ import Placeholder from "@shortcodes/Placeholder.astro"
|
|||
<p>وكما يتبيّن لنا، من عدد الحلول الملطِّفة للمشكلة، ومن تنوّعها، وهي الحلول التي أسلفنا الحديث عنها، فإن التكنولوجيا التي نحتاج إليها من أجل معالجة هذه التحديات، هي في مدى قدرتنا، لكنها ربما تتطلّب بعض التحسين، ودعماً استثمارياً أكبر!</p>
|
||||
<p>ولا مانع من إضافة محتوى آخر ليس تحت أي قسم معين.</p>
|
||||
</div>
|
||||
</div>
|
||||
`} />
|
||||
</div>
|
||||
</article>
|
||||
<article class="my-3" id="spinners">
|
||||
|
|
|
@ -1394,7 +1394,7 @@ export const body_class = 'bg-body-tertiary'
|
|||
</div>
|
||||
|
||||
<div>
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<nav id="navbar-example2" class="navbar bg-body-tertiary px-3">
|
||||
<a class="navbar-brand" href="#">Navbar</a>
|
||||
<ul class="nav nav-pills">
|
||||
|
@ -1427,7 +1427,7 @@ export const body_class = 'bg-body-tertiary'
|
|||
<h4 id="scrollspyHeading5">Fifth heading</h4>
|
||||
<p>This is some placeholder content for the scrollspy page. Note that as you scroll down the page, the appropriate navigation link is highlighted. It's repeated throughout the component example. We keep adding some more example copy here to emphasize the scrolling and highlighting.</p>
|
||||
</div>
|
||||
</div>
|
||||
`} />
|
||||
</div>
|
||||
</article>
|
||||
<article class="my-3" id="spinners">
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
---
|
||||
import Code from '@shortcodes/Code.astro'
|
||||
import Example from '@shortcodes/Example.astro'
|
||||
import * as tableContent from '@shortcodes/TableContent.md'
|
||||
|
||||
interface Props {
|
||||
|
@ -20,12 +21,12 @@ const { class: className, simplified = true } = Astro.props
|
|||
const tableCode = `<table${className ? ` class="${className}"` : ''}>
|
||||
${simplified ? ' ...' : await tableContent.compiledContent()}
|
||||
</table>`
|
||||
|
||||
const exampleCode = `<table${className ? ` class="${className}"` : ''}>
|
||||
${await tableContent.compiledContent()}
|
||||
</table>`
|
||||
---
|
||||
|
||||
<div class="bd-example">
|
||||
<table class={className}>
|
||||
<tableContent.Content />
|
||||
</table>
|
||||
</div>
|
||||
<Example showMarkup={false} code={exampleCode} />
|
||||
|
||||
<Code code={tableCode} lang="html" />
|
||||
|
|
|
@ -200,9 +200,9 @@ Each `.btn-*` modifier class updates the appropriate CSS variables to minimize a
|
|||
|
||||
Here’s an example of building a custom `.btn-*` modifier class as we do for the buttons unique to our docs by reassigning Bootstrap’s CSS variables with a mixture of our own CSS and Sass variables.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<button type="button" class="btn btn-bd-primary">Custom button</button>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
<ScssDocs name="btn-css-vars-example" file="site/src/scss/_buttons.scss" />
|
||||
|
||||
|
|
|
@ -100,9 +100,9 @@ Toggle a working modal demo by clicking the button below. It will slide down and
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModalLive">Launch demo modal</button>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<!-- Button trigger modal -->
|
||||
|
@ -152,9 +152,9 @@ When backdrop is set to static, the modal will not close when clicking outside o
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#staticBackdropLive">Launch static backdrop modal</button>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<!-- Button trigger modal -->
|
||||
|
@ -204,9 +204,9 @@ When modals become too long for the user’s viewport or device, they scroll ind
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModalLong">Launch demo modal</button>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
You can also create a scrollable modal that allows scrolling the modal body by adding `.modal-dialog-scrollable` to `.modal-dialog`.
|
||||
|
||||
|
@ -230,9 +230,9 @@ You can also create a scrollable modal that allows scrolling the modal body by a
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#exampleModalScrollable">Launch demo modal</button>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<!-- Scrollable modal -->
|
||||
|
@ -383,9 +383,9 @@ Utilize the Bootstrap grid system within a modal by nesting `.container-fluid` w
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#gridSystemModal">Launch demo modal</button>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<div class="modal-body">
|
||||
|
|
|
@ -302,7 +302,7 @@ Mix and match with other components and utilities as needed.
|
|||
|
||||
Navbar themes are easier than ever thanks to Bootstrap’s combination of Sass and CSS variables. The default is our “light navbar” for use with light background colors, but you can also apply `data-bs-theme="dark"` to the `.navbar` parent for dark background colors. Then, customize with `.bg-*` and additional utilities.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<nav class="navbar navbar-expand-lg bg-dark border-bottom border-body" data-bs-theme="dark">
|
||||
<div class="container-fluid">
|
||||
<a class="navbar-brand" href="#">Navbar</a>
|
||||
|
@ -389,7 +389,7 @@ Navbar themes are easier than ever thanks to Bootstrap’s combination of Sass a
|
|||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<nav class="navbar bg-dark border-bottom border-body" data-bs-theme="dark">
|
||||
|
|
|
@ -325,7 +325,7 @@ On the `.nav-underline` modifier class:
|
|||
|
||||
Use the tab JavaScript plugin—include it individually or through the compiled `bootstrap.js` file—to extend our navigational tabs and pills to create tabbable panes of local content.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<ul class="nav nav-tabs mb-3" id="myTab" role="tablist">
|
||||
<li class="nav-item" role="presentation">
|
||||
<button class="nav-link active" id="home-tab" data-bs-toggle="tab" data-bs-target="#home-tab-pane" type="button" role="tab" aria-controls="home-tab-pane" aria-selected="true">Home</button>
|
||||
|
@ -354,7 +354,7 @@ Use the tab JavaScript plugin—include it individually or through the compiled
|
|||
<p>This is some placeholder content the <strong>Disabled tab’s</strong> associated content.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<ul class="nav nav-tabs" id="myTab" role="tablist">
|
||||
|
@ -381,7 +381,7 @@ Use the tab JavaScript plugin—include it individually or through the compiled
|
|||
|
||||
To help fit your needs, this works with `<ul>`-based markup, as shown above, or with any arbitrary “roll your own” markup. Note that if you’re using `<nav>`, you shouldn’t add `role="tablist"` directly to it, as this would override the element’s native role as a navigation landmark. Instead, switch to an alternative element (in the example below, a simple `<div>`) and wrap the `<nav>` around it.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<nav>
|
||||
<div class="nav nav-tabs mb-3" id="nav-tab" role="tablist">
|
||||
<button class="nav-link active" id="nav-home-tab" data-bs-toggle="tab" data-bs-target="#nav-home" type="button" role="tab" aria-controls="nav-home" aria-selected="true">Home</button>
|
||||
|
@ -404,7 +404,7 @@ To help fit your needs, this works with `<ul>`-based markup, as shown above, or
|
|||
<p>This is some placeholder content the <strong>Disabled tab’s</strong> associated content.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<nav>
|
||||
|
@ -425,7 +425,7 @@ To help fit your needs, this works with `<ul>`-based markup, as shown above, or
|
|||
|
||||
The tabs plugin also works with pills.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<ul class="nav nav-pills mb-3" id="pills-tab" role="tablist">
|
||||
<li class="nav-item" role="presentation">
|
||||
<button class="nav-link active" id="pills-home-tab" data-bs-toggle="pill" data-bs-target="#pills-home" type="button" role="tab" aria-controls="pills-home" aria-selected="true">Home</button>
|
||||
|
@ -454,7 +454,7 @@ The tabs plugin also works with pills.
|
|||
<p>This is some placeholder content the <strong>Disabled tab’s</strong> associated content.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<ul class="nav nav-pills mb-3" id="pills-tab" role="tablist">
|
||||
|
@ -481,7 +481,7 @@ The tabs plugin also works with pills.
|
|||
|
||||
And with vertical pills. Ideally, for vertical tabs, you should also add `aria-orientation="vertical"` to the tab list container.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<div class="d-flex align-items-start">
|
||||
<div class="nav flex-column nav-pills me-3" id="v-pills-tab" role="tablist" aria-orientation="vertical">
|
||||
<button class="nav-link active" id="v-pills-home-tab" data-bs-toggle="pill" data-bs-target="#v-pills-home" type="button" role="tab" aria-controls="v-pills-home" aria-selected="true">Home</button>
|
||||
|
@ -508,7 +508,7 @@ And with vertical pills. Ideally, for vertical tabs, you should also add `aria-o
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<div class="d-flex align-items-start">
|
||||
|
|
|
@ -94,7 +94,7 @@ Scroll the area below the navbar and watch the active class change. Open the dro
|
|||
|
||||
Scrollspy also works with nested `.nav`s. If a nested `.nav` is `.active`, its parents will also be `.active`. Scroll the area next to the navbar and watch the active class change.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<div class="row">
|
||||
<div class="col-4">
|
||||
<nav id="navbar-example3" class="h-100 flex-column align-items-stretch pe-4 border-end">
|
||||
|
@ -153,7 +153,7 @@ Scrollspy also works with nested `.nav`s. If a nested `.nav` is `.active`, its p
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<div class="row">
|
||||
|
@ -214,7 +214,7 @@ Scrollspy also works with nested `.nav`s. If a nested `.nav` is `.active`, its p
|
|||
|
||||
Scrollspy also works with `.list-group`s. Scroll the area next to the list group and watch the active class change.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<div class="row">
|
||||
<div class="col-4">
|
||||
<div id="list-example" class="list-group">
|
||||
|
@ -237,7 +237,7 @@ Scrollspy also works with `.list-group`s. Scroll the area next to the list group
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<div class="row">
|
||||
|
@ -268,7 +268,7 @@ Scrollspy also works with `.list-group`s. Scroll the area next to the list group
|
|||
|
||||
Scrollspy is not limited to nav components and list groups, so it will work on any `<a>` anchor elements in the current document. Scroll the area and watch the `.active` class change.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<div class="row">
|
||||
<div class="col-4">
|
||||
<div id="simple-list-example" class="d-flex flex-column gap-2 simple-list-example-scrollspy text-center">
|
||||
|
@ -294,7 +294,7 @@ Scrollspy is not limited to nav components and list groups, so it will work on a
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<div class="row">
|
||||
|
|
|
@ -57,9 +57,9 @@ Click the button below to show a toast (positioned with our utilities in the low
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<button type="button" class="btn btn-primary" id="liveToastBtn">Show live toast</button>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<button type="button" class="btn btn-primary" id="liveToastBtn">Show live toast</button>
|
||||
|
|
|
@ -147,7 +147,7 @@ All lists—`<ul>`, `<ol>`, and `<dl>`—have their `margin-top` removed and a `
|
|||
|
||||
For simpler styling, clear hierarchy, and better spacing, description lists have updated `margin`s. `<dd>`s reset `margin-left` to `0` and add `margin-bottom: .5rem`. `<dt>`s are **bolded**.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<dl>
|
||||
<dt>Description lists</dt>
|
||||
<dd>A description list is perfect for defining terms.</dd>
|
||||
|
@ -157,7 +157,7 @@ For simpler styling, clear hierarchy, and better spacing, description lists have
|
|||
<dt>Another term</dt>
|
||||
<dd>Definition for this other term.</dd>
|
||||
</dl>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
## Inline code
|
||||
|
||||
|
@ -408,15 +408,15 @@ The default `margin` on blockquotes is `1em 40px`, so we reset that to `0 0 1rem
|
|||
|
||||
The `<abbr>` element receives basic styling to make it stand out amongst paragraph text.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
The <abbr title="HyperText Markup Language">HTML</abbr> abbreviation element.
|
||||
</div>
|
||||
`} />
|
||||
|
||||
### Summary
|
||||
|
||||
The default `cursor` on summary is `text`, so we reset that to `pointer` to convey that the element can be interacted with by clicking on it.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<details>
|
||||
<summary>Some details</summary>
|
||||
<p>More info about the details.</p>
|
||||
|
@ -426,7 +426,7 @@ The default `cursor` on summary is `text`, so we reset that to `pointer` to conv
|
|||
<summary>Even more details</summary>
|
||||
<p>Here are even more details about the details.</p>
|
||||
</details>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
## HTML5 `[hidden]` attribute
|
||||
|
||||
|
|
|
@ -105,7 +105,7 @@ These hoverable rows can also be combined with the striped rows variant:
|
|||
|
||||
Highlight a table row or cell by adding a `.table-active` class.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
|
@ -136,7 +136,7 @@ Highlight a table row or cell by adding a `.table-active` class.
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<table class="table">
|
||||
|
@ -160,7 +160,7 @@ Highlight a table row or cell by adding a `.table-active` class.
|
|||
</table>
|
||||
```
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<table class="table table-dark">
|
||||
<thead>
|
||||
<tr>
|
||||
|
@ -191,7 +191,7 @@ Highlight a table row or cell by adding a `.table-active` class.
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<table class="table table-dark">
|
||||
|
@ -296,7 +296,7 @@ Add a thicker border, darker between table groups—`<thead>`, `<tbody>`, and `<
|
|||
|
||||
Table cells of `<thead>` are always vertical aligned to the bottom. Table cells in `<tbody>` inherit their alignment from `<table>` and are aligned to the top by default. Use the [vertical align]([[docsref:/utilities/vertical-align]]) classes to re-align where needed.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<div class="table-responsive">
|
||||
<table class="table align-middle">
|
||||
<thead>
|
||||
|
@ -329,7 +329,7 @@ Table cells of `<thead>` are always vertical aligned to the bottom. Table cells
|
|||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<div class="table-responsive">
|
||||
|
@ -361,7 +361,7 @@ Table cells of `<thead>` are always vertical aligned to the bottom. Table cells
|
|||
|
||||
Border styles, active styles, and table variants are not inherited by nested tables.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<table class="table table-striped table-bordered">
|
||||
<thead>
|
||||
<tr>
|
||||
|
@ -416,7 +416,7 @@ Border styles, active styles, and table variants are not inherited by nested tab
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<table class="table table-striped table-bordered">
|
||||
|
@ -449,7 +449,7 @@ Note that if you add `<tr>`s as direct children of a table, those `<tr>` will be
|
|||
|
||||
Similar to tables and dark tables, use the modifier classes `.table-light` or `.table-dark` to make `<thead>`s appear light or dark gray.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<table class="table">
|
||||
<thead class="table-light">
|
||||
<tr>
|
||||
|
@ -480,7 +480,7 @@ Similar to tables and dark tables, use the modifier classes `.table-light` or `.
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<table class="table">
|
||||
|
@ -493,7 +493,7 @@ Similar to tables and dark tables, use the modifier classes `.table-light` or `.
|
|||
</table>
|
||||
```
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<table class="table">
|
||||
<thead class="table-dark">
|
||||
<tr>
|
||||
|
@ -524,7 +524,7 @@ Similar to tables and dark tables, use the modifier classes `.table-light` or `.
|
|||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<table class="table">
|
||||
|
@ -539,7 +539,7 @@ Similar to tables and dark tables, use the modifier classes `.table-light` or `.
|
|||
|
||||
### Table foot
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
|
@ -578,7 +578,7 @@ Similar to tables and dark tables, use the modifier classes `.table-light` or `.
|
|||
</tr>
|
||||
</tfoot>
|
||||
</table>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<table class="table">
|
||||
|
@ -665,7 +665,7 @@ Responsive tables make use of `overflow-y: hidden`, which clips off any content
|
|||
|
||||
Across every breakpoint, use `.table-responsive` for horizontally scrolling tables.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<div class="table-responsive">
|
||||
<table class="table">
|
||||
<thead>
|
||||
|
@ -722,7 +722,7 @@ Across every breakpoint, use `.table-responsive` for horizontally scrolling tabl
|
|||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<div class="table-responsive">
|
||||
|
|
|
@ -62,14 +62,14 @@ Use the included utility classes to recreate the small secondary heading text fr
|
|||
|
||||
Traditional heading elements are designed to work best in the meat of your page content. When you need a heading to stand out, consider using a **display heading**—a larger, slightly more opinionated heading style.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<div class="display-1 pb-3 mb-3 border-bottom">Display 1</div>
|
||||
<div class="display-2 pb-3 mb-3 border-bottom">Display 2</div>
|
||||
<div class="display-3 pb-3 mb-3 border-bottom">Display 3</div>
|
||||
<div class="display-4 pb-3 mb-3 border-bottom">Display 4</div>
|
||||
<div class="display-5 pb-3 mb-3 border-bottom">Display 5</div>
|
||||
<div class="display-6">Display 6</div>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<h1 class="display-1">Display 1</h1>
|
||||
|
|
|
@ -38,11 +38,11 @@ For more information and examples on how to modify our Sass maps and variables,
|
|||
|
||||
We encourage you to adopt these guidelines when building with Bootstrap to create your own components. We’ve extended this approach ourselves to the custom components in our documentation and examples. Components like our callouts are built just like our provided components with base and modifier classes.
|
||||
|
||||
<div class="bd-example">
|
||||
<Example showMarkup={false} code={`
|
||||
<div class="bd-callout my-0">
|
||||
<strong>This is a callout.</strong> We built it custom for our docs so our messages to you stand out. It has three variants via modifier classes.
|
||||
</div>
|
||||
</div>
|
||||
`} />
|
||||
|
||||
```html
|
||||
<div class="callout">...</div>
|
||||
|
|
|
@ -34,9 +34,7 @@ robots: noindex,follow
|
|||
}
|
||||
```
|
||||
|
||||
<div class="bd-example">
|
||||
The <abbr title="HyperText Markup Language">HTML</abbr> abbreviation element.
|
||||
</div>
|
||||
<Example showMarkup={false} code={`The <abbr title="HyperText Markup Language">HTML</abbr> abbreviation element.`} />
|
||||
|
||||
<Example code={`<div class="test">This is a test.</div>`} />
|
||||
|
||||
|
|
Loading…
Reference in New Issue