向 Bootstrap 列表组中添加 HTML 内容


使用 list-group-item 类添加 Bootstrap 列表组。

使用以下代码向链接的列表组添加 HTML 内容

示例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
      <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class = "list-group">
         <a href = "#" class = "list-group-item active">
            <h4 class = "list-group-item-heading">
               Tutorials
            </h4>
         </a>
         <a href = "#" class = "list-group-item">
            <h4 class = "list-group-item-heading">
               Programming
            </h4>
            <p class = "list-group-item-text">
               Tutorials on Java, C, C++, etc.
            </p>
         </a>
         <a href = "#" class = "list-group-item">
            <h4 class = "list-group-item-heading">
               Web Development
            </h4>
            <p class = "list-group-item-text">
               Tutorials on PHP, HTML5, etc.
            </p>
         </a>
         <a href = "#" class = "list-group-item">
            <h4 class = "list-group-item-heading">
               Database
            </h4>
            <p class = "list-group-item-text">
               Tutorials on DBMS, MySQL, DB2, etc.
            </p>
         </a>
      </div>
      <div class = "list-group">
         <a href = "#" class = "list-group-item active">
            <h4 class = "list-group-item-heading">
               Quiz
            </h4>
         </a>
         <a href = "#" class="list-group-item">
            <h4 class = "list-group-item-heading">
               CAT
            </h4>
            <p class = "list-group-item-text">
               Quiz for CAT students.
            </p>
         </a>
         <a href = "#" class = "list-group-item">
            <h4 class = "list-group-item-heading">NEET</h4>
            <p class = "list-group-item-text">Quiz for NEET students.</p>
         </a>
      </div>
   </body>
</html>

更新于:12-06-2020

190 次浏览

开启你的职业生涯

完成课程,获得认证

开始吧
广告