国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

????? ??? ??? / Bootstrap 標(biāo)簽

Bootstrap 標(biāo)簽

本章將講解 Bootstrap 標(biāo)簽。標(biāo)簽可用于計(jì)數(shù)、提示或頁面上其他的標(biāo)記顯示。使用 class .label 來顯示標(biāo)簽,如下面的實(shí)例所示:

實(shí)例

<!DOCTYPE html>
<html>
<head>
   <title>Bootstrap 實(shí)例 - 標(biāo)簽</title>
   <link href="http://libs.baidu.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet">
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script src="http://libs.baidu.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
</head>
<body>

<h1>Example Heading <span class="label label-default">Label</span></h1>
<h2>Example Heading <span class="label label-default">Label</span></h2>
<h3>Example Heading <span class="label label-default">Label</span></h3>
<h4>Example Heading <span class="label label-default">Label</span></h4>


</body>
</html>

運(yùn)行實(shí)例 ?

點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例

您可以使用修飾的 class label-default、label-primary、label-success、label-info、label-warning、label-danger 來改變標(biāo)簽的外觀,如下面的實(shí)例所示:

實(shí)例

<!DOCTYPE html>
<html>
<head>
   <title>Bootstrap 實(shí)例 - 標(biāo)簽的變體</title>
   <link href="http://libs.baidu.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet">
<script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
<script src="http://libs.baidu.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
</head>
<body>

<span class="label label-default">默認(rèn)標(biāo)簽</span>
<span class="label label-primary">主要標(biāo)簽</span>
<span class="label label-success">成功標(biāo)簽</span>
<span class="label label-info">信息標(biāo)簽</span>
<span class="label label-warning">警告標(biāo)簽</span>
<span class="label label-danger">危險(xiǎn)標(biāo)簽</span>


</body>
</html>

運(yùn)行實(shí)例 ?

點(diǎn)擊 "運(yùn)行實(shí)例" 按鈕查看在線實(shí)例