91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Bootstrap排版樣式

發布時間:2020-06-02 12:44:39 來源:網絡 閱讀:539 作者:菜鳥不菜么 欄目:web開發

頁面排版
Bootstrap 提供了一些常規設計好的頁面排版的樣式供開發者使用。
1.頁面主體
Bootstrap 將全局 font-size 設置為 14px,line-height 行高設置為 1.428(即
20px);<p>段落元素被設置等于 1/2 行高(即 10px);顏色被設置為#333。
//創建包含段落突出的文本
<p>Bootstrap 框架</p>
<p class="lead">Bootstrap 框架</p>
<p>Bootstrap 框架</p>
<p>Bootstrap 框架</p>
<p>Bootstrap 框架</p>

2.標題
//從 h2 到 h7
<h2>Bootstrap 框架</h2> //36px
<h3>Bootstrap 框架</h3> //30px
<h4>Bootstrap 框架</h4> //24px
<h5>Bootstrap 框架</h5> //18px
<h6>Bootstrap 框架</h6> //14px
<h7>Bootstrap 框架</h7> //12px

我們從 Firebug 查看元素了解到,Bootstrap 分別對 h2 ~ h7 進行了 CSS 樣式的重構, 并且還支持普通內聯元素定義 class=(.h2 ~ h7)來實現相同的功能。
//內聯元素使用標題字體
<span class="h2">Bootstrap</span>

注:通過 Firebug 查看元素還看到,字體顏色、字體樣式、行高均被固定了,從而保證了統一性,而原生的會根據系統內置的首選字體決定,顏色是最黑色。

在 h2 ~ h7 元素之間,還可以嵌入一個 small 元素作為副標題,
//在標題元素內插入 small 元素
<h2>Bootstrap 框架 <small>Bootstrap 小標題</small></h2>

<h3>Bootstrap 框架 <small>Bootstrap 小標題</small></h3>
<h4>Bootstrap 框架 <small>Bootstrap 小標題</small></h4>
<h5>Bootstrap 框架 <small>Bootstrap 小標題</small></h5>
<h6>Bootstrap 框架 <small>Bootstrap 小標題</small></h6>
<h7>Bootstrap 框架 <small>Bootstrap 小標題</small></h7>

通過 Firebug 查看,我們發現 h2 ~ h4 下 small 元素的大小只占父元素的 65%,那么通過計算(查看 Firebug 計算后的樣式),h2 ~ h4 下的 small 為 23.4px、19.5px、15.6px; h5 ~ h7 下 small 元素的大小只占父元素的 75% ,分別為:13.5px、10.5px、9px。
在 h2 ~ h7 下的 small 樣式也進行了改變,顏色變成淡灰色:#777,行高為 1,粗度為 400。

3.內聯文本元素
//添加標記,<mark>元素或.mark 類
<p>Bootstrap<mark>框架</mark></p>

//各種加線條的文本
<del>Bootstrap 框架</del> //刪除的文本
<s>Bootstrap 框架</s> //無用的文本
<ins>Bootstrap 框架</ins> //插入的文本
<u>Bootstrap 框架</u> //效果同上,下劃線文本

//各種強調的文本
<small>Bootstrap 框架</small> //標準字號的 85%
<strong>Bootstrap 框架</strong> //加粗 700
<em>Bootstrap 框架</em> //傾斜

4.對齊
//設置文本對齊
<p class="text-left">Bootstrap 框架</p> //居左
<p class="text-center">Bootstrap 框架</p> //居中
<p class="text-right">Bootstrap 框架</p> //居右
<p class="text-justify">Bootstrap 框架</p> //兩端對齊,支持度不佳
<p class="text-nowrap">Bootstrap 框架</p> //不換行

5.大小寫
//設置英文文本大小寫
<p class="text-lowercase">Bootstrap 框架</p> //小寫
<p class="text-uppercase">Bootstrap 框架</p> //大寫
<p class="text-capitalize">Bootstrap 框架</p>//首字母大寫

6.縮略語
//縮略語
Bootstrap<abbr title="Bootstrap" class="initialism">框架</abbr>

7.地址文本
//設置地址,去掉了傾斜,設置了行高,底部 20px
<address>
<strong>Twitter, Inc.</strong><br> 795 Folsom Ave, Suite 600<br>
San Francisco, CA 94107<br>
<abbr title="Phone">P:</abbr> (123) 456-7890
</address>

8.引用文本
//默認樣式引用,增加了做邊線,設定了字體大小和內外邊距
<blockquote>
Bootstrap 框架
</blockquote>

//反向
<blockquote class="blockquote-reverse ">
Bootstrap 框架
</blockquote>

9.列表排版
//移出默認樣式
<ul class="list-unstyled">
<li>Bootstrap 框架</li>
<li>Bootstrap 框架</li>
<li>Bootstrap 框架</li>
<li>Bootstrap 框架</li>
<li>Bootstrap 框架</li>
</ul>

//設置成內聯
<ul class="list-inline">
<li>Bootstrap 框架</li>
<li>Bootstrap 框架</li>
<li>Bootstrap 框架</li>
<li>Bootstrap 框架</li>
<li>Bootstrap 框架</li>
</ul>

//水平排列描述列表
<dl class="dl-horizontal">
<dt>Bootstrap</dt>
<dd>Bootstrap 提供了一些常規設計好的頁面排版的樣式供開發者使用。</dd>

</dl>

10.代碼
//內聯代碼
<code><section></code>

//用戶輸入
press <kbd>ctrl + ,</kbd>

//代碼塊
<pre><p>Please input...</p></pre>

Bootstrap 還列舉了<var>表示標記變量,<samp>表示程序輸出,只不過沒有重新復寫 CSS。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

韶关市| 凌源市| 伊宁县| 南昌县| 宣威市| 曲阳县| 丰镇市| 宾川县| 秦皇岛市| 遵化市| 大名县| 平利县| 陇川县| 临沧市| 定兴县| 鲁山县| 桃园市| 固镇县| 腾冲县| 闻喜县| 湛江市| 慈利县| 丹棱县| 荔波县| 岐山县| 邻水| 从化市| 明溪县| 兖州市| 云阳县| 奉新县| 广灵县| 金昌市| 阿图什市| 梧州市| 安义县| 张家口市| 镇雄县| 宣武区| 改则县| 松原市|