使用 Bootstrap 設定丸型選單


要在 Bootstrap 中設定丸型選單,請使用 Bootstrap 中的 .nav nav-pills 

示例

實際操作演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link rel = "stylesheet" href = "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
      <script src = "https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class = "container">
         <h2>Web Development</h2>
         <p>The following are the web dev technologies:</p>
         <ul class = "nav nav-pills" role = "tablist">
            <li class = "active"><a href = "#">HTML5</a></li>
            <li><a href = "#">jQuery</a></li>
            <li><a href = "#">JavaScript</a></li>
            <li><a href = "#">CSS</a></li>
            <li><a href = "#">Ajax</a></li>
            <li><a href = "#">ES6</a></li>
         </ul>
      </div>
   </body>
</html>

更新時間:2020 年 6 月 12 日

113 次瀏覽

啟動您的 職業生涯

透過完成課程獲得認證

開始學習
廣告
© . All rights reserved.