Measuring open the road to one hundred and nine: bootstrap list

 

 

bootstrap list

Introducing bootstrap label

 

 

Originally effect

 

 

 

Level display

 

 

 

bootstrap list

List Combo Box

 

 

 

Combination box plus later Remarks

 

 

 

highlight

 

 

 

a list of labels

 

 

 

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>bootstrap布局</title>
<!--网页源数据跨平台兼容做一些说明-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!--跨屏自适应说明-->
<meta name="viewport" content="width=device-width, initial-scale=1">

<link href="https://cdn.bootcss.com/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js"></script>
<script src="https://cdn.bootcss.com/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></ Script> <li> Home </ li><ul><-! originally effect -><h1> Bootstrap list </ h1><body>
</ head>






<li>
Products
<ul>
<li> phone </ li>
<li> PC </ li>
</ ul>
</ li>
<li> About </ li>
<li> Contact </ li>
</ ul>

<-! level display ->
<ul class = "List-inline">
<li> Home </ li>
<li> products </ li>
<li> About </ li>
< li> Contact </ li>
</ ul>

<-! Bootstrap ->
<-! list combo box ->
<div class = "Container">
<div class = "Row">
<div class = "MD--COL. 3">
<UL class = "list-group">
<li class="list-group-item">手机</li>
<li class="list-group-item">电脑</li>
<li class="list-group-item">冰箱</li>
<li class="list-group-item">电视机</li>
</ul>
</div>
</div>
</div>


<!--列表组合框加内容-->
<div class="container">
<div class="row">
<div class="col-md-3">
<ul class="list-group">
<li class="list-group-item">手机<span class="badge">12</span></li>
<li class="list-group-item">电脑<span class="badge">23</span></li>
<li class="list-group-item">冰箱<span class="badge">134</span></li>
<li class="list-group-item">电视机<span class="badge">34</span></li>
</ul>
</div>
</div>
</div>

<!--突出显示-->
<div class="container">
<div class="row">
<div class="col-md-3">
<ul class="list-group">
<li class="list-group-item">手机<span class="badge">12</span></li>
<li class="list-group-item active">电脑<span class="badge">23</span></li>
<li class="list-group-item">冰箱<span class="badge">134</span></li>
<li class="list-group-item">电视机<span class="badge">34</span></li>
</ul>
</div>
</div>
</div>

<!--a标签列表-->
<div class="container">
<div class="row">
<div class="col-md-6">
<ul class = "list-group">
<a href="#" class="list-group-item">
<h4 class = "list-group-heading">第一个from标签</ h4>
<p class = "list-group-text"> lorem ipsum carrots, enhanced rebates. A more open mind rejects,
and the main body quo was named the grand old who discovered no need
services that are being treated with pleasure. </ P>
</a>
<! -语义标签->
<a href = "#" class = "list-item-group-list-item-group success">
<
<p class = "list-group-text"> lorem ipsum carrots, enhanced rebates. A more open mind rejects,
and the main body quo was named the grand old who discovered no need
services that are being treated with pleasure. </ P>
</a>
<! -突出强调->
<a href = "#" class = "list-item-group active">
<h4 class = "list-group-heading">第一个from标签</ h4>
<p class = "list-group-text"> lorem ipsum carrots, enhanced rebates developer. A more open mind rejects
and the main body quo was named the grand old who discovered no need
services that are being treated with pleasure. </ p>
</a>
</ ul>
</ DIV>
</ DIV>
</ DIV>


</ body>
</ html >

 

Guess you like

Origin www.cnblogs.com/zhongyehai/p/11433529.html