BootStrap--CSS組件--麵包屑導航(breadcrumb)

來源:互聯網
上載者:User

麵包屑breadcrumb一般用於導航,表示當前頁面所在的位置
麵包屑可以設定其他相關的小標記內容,比如標籤、徽章標記等。

//源碼//基礎樣式.breadcrumb {  padding: 8px 15px;  margin-bottom: 20px;  list-style: none;  background-color: #f5f5f5;  border-radius: 4px;}//所有li項都是內聯塊方式.breadcrumb > li {  display: inline-block;}//並且li項才起作用.breadcrumb > li + li:before {  padding: 0 5px;  color: #ccc;  content: "/\00a0";}//設定當前項的顏色.breadcrumb > .active {  color: #777;}
<!DOCTYPE html><html lang="en">  <head>    <meta charset="utf-8">    <meta http-equiv="X-UA-Compatible" content="IE=edge">    <!-- Bootstrap從3.0版本開始全面支援移動平台,貫徹移動先行宗旨 -->    <meta name="viewport" content="width=device-width, initial-scale=1">    <title>Bootstrap 101 Template</title>    <!-- Bootstrap -->    <link href="bootstrap-3.3.7-dist/css/bootstrap.min.css" rel="stylesheet">  </head>  <body>      <ul class="breadcrumb">          <li>HTML</li>          <li>JS</li>          <li>CSS</li>      </ul>    <!-- bootstrap是基於jQuery-->    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>    <script src="bootstrap-3.3.7-dist/js/bootstrap.min.js"></script>  </body></html>
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.