top
Loading...
Bootstrap4 文字排版

Bootstrap4 文字排版


Bootstrap 4 默認設置

Bootstrap 4 默認的 font-size 為 16px, line-height 為 1.5。

默認的 font-family 為 "Helvetica Neue", Helvetica, Arial, sans-serif。

此外,所有的 <p> 元素 margin-top: 0margin-bottom: 1rem (16px)。


<h1> - <h6>

Bootstrap 中定義了所有的 HTML 標題(h1 到 h6)的樣式。請看下面的實例:

實例

<div class="container"> <h1>h1 Bootstrap 標題 (2.5rem = 40px)</h1> <h2>h2 Bootstrap 標題 (2rem = 32px)</h2> <h3>h3 Bootstrap 標題 (1.75rem = 28px)</h3> <h4>h4 Bootstrap 標題 (1.5rem = 24px)</h4> <h5>h5 Bootstrap 標題 (1.25rem = 20px)</h5> <h6>h6 Bootstrap 標題 (1rem = 16px)</h6> </div>

嘗試一下 »

Display 標題類

Bootstrap 還提供了四個 Display 類來控製標題的樣式: .display-1, .display-2, .display-3, .display-4。

實例

<div class="container"> <h1>Display 標題</h1> <p>Display 標題可以輸出更大更粗的字體樣式。</p> <h1 class="display-1">Display 1</h1> <h1 class="display-2">Display 2</h1> <h1 class="display-3">Display 3</h1> <h1 class="display-4">Display 4</h1> </div>

嘗試一下 »

<small>

在 Bootstrap 4 中 HTML <small> 元素用於創建字號更小的顏色更淺的文本:

實例

<div class="container"> <h1>更小文本標題</h1> <p>small 元素用於字號更小的顏色更淺的文本:</p> <h1>h1 標題 <small>副標題</small></h1> <h2>h2 標題 <small>副標題</small></h2> <h3>h3 標題 <small>副標題</small></h3> <h4>h4 標題 <small>副標題</small></h4> <h5>h5 標題 <small>副標題</small></h5> <h6>h6 標題 <small>副標題</small></h6> </div>

嘗試一下 »

<mark>

Bootstrap 4 定義 <mark> 為黃色背景及有一定的內邊距:

實例

<div class="container"> <h1>高亮文本</h1> <p>使用 mark 元素來 <mark>高亮</mark> 文本。</p> </div>

嘗試一下 »

<abbr>

Bootstrap 4 定義 HTML <abbr> 元素的樣式為顯示在文本底部的一條虛線邊框:

實例

<div class="container"> <h1>Abbreviations</h1> <p>The abbr element is used to mark up an abbreviation or acronym:</p> <p>The <abbr title="World Health Organization">WHO</abbr> was founded in 1948.</p> </div>

嘗試一下 »

<blockquote>

對於引用的內容可以在 <blockquote> 上添加 .blockquote 類 :

實例

<div class="container"> <h1>Blockquotes</h1> <p>The blockquote element is used to present content from another source:</p> <blockquote class="blockquote"> <p>For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, WWF works in 100 countries and is supported by 1.2 million members in the United States and close to 5 million globally.</p> <footer class="blockquote-footer">From WWF's website</footer> </blockquote> </div>

嘗試一下 »

<dl>

Bootstrap 4 定義 HTML <dl> 元素的樣式如下:

實例

<div class="container"> <h1>Description Lists</h1> <p>The dl element indicates a description list:</p> <dl> <dt>Coffee</dt> <dd>- black hot drink</dd> <dt>Milk</dt> <dd>- white cold drink</dd> </dl> </div>

嘗試一下 »

<code>

Bootstrap 4 定義 HTML <code> 元素的樣式如下:

實例

<div class="container"> <h1>代碼片段</h1> <p>可以將一些代碼元素放到 code 元素里面:</p> <p>以下 HTML 元素: <code>span</code>, <code>section</code>, 和 <code>div</code> 用於定義部分文檔內容。</p> </div>

嘗試一下 »

<kbd>

Bootstrap 4 定義 HTML <kbd> 元素的樣式如下:

實例

<div class="container"> <h1>Keyboard Inputs</h1> <p>To indicate input that is typically entered via the keyboard, use the kbd element:</p> <p>Use <kbd>ctrl + p</kbd> to open the Print dialog box.</p> </div>

嘗試一下 »

<pre>

Bootstrap 4 定義 HTML <pre> 元素的樣式如下:

實例

<div class="container"> <h1>Multiple Code Lines</h1> <p>For multiple lines of code, use the pre element:</p> <pre> Text in a pre element is displayed in a fixed-width font, and it preserves both spaces and line breaks. </pre> </div>

嘗試一下 »

更多排版類

下表提供了 Bootstrap4 更多排版類的實例:

類名 描述 實例
.font-weight-bold 加粗文本 嘗試一下
.font-weight-normal 普通文本 嘗試一下
.font-weight-light 更細的文本 嘗試一下
.font-italic 斜體文本 嘗試一下
.lead 讓段落更突出 嘗試一下
.small 指定更小文本 (為父元素的 85% ) 嘗試一下
.text-left 左對齊 嘗試一下
.text-center 居中 嘗試一下
.text-right 右對齊 嘗試一下
.text-justify 設定文本對齊,段落中超出屏幕部分文字自動換行 嘗試一下
.text-nowrap 段落中超出屏幕部分不換行 嘗試一下
.text-lowercase 設定文本小寫 嘗試一下
.text-uppercase 設定文本大寫 嘗試一下
.text-capitalize 設定單詞首字母大寫 嘗試一下
.initialism 顯示在 <abbr> 元素中的文本以小號字體展示,且可以將小寫字母轉換為大寫字母 嘗試一下
.list-unstyled 移除默認的列表樣式,列表項中左對齊 ( <ul> 和 <ol> 中)。 這個類僅適用於直接子列表項 (如果需要移除嵌套的列表項,你需要在嵌套的列表中使用該樣式) 嘗試一下
.list-inline 將所有列表項放置同一行 嘗試一下
.pre-scrollable 使 <pre> 元素可滾動,代碼塊區域最大高度為340px,一旦超出這個高度,就會在Y軸出現滾動條 嘗試一下
北斗有巢氏 有巢氏北斗