Bootstrap 中的 dl-horizontal 類


在定義列表中,每個列表項可以同時包含 <dt> 和 <dd> 元素。<dt> 表示定義術語,就像字典一樣,它是正在定義的術語(或短語)。其後,<dd> 是 <dt> 的定義。你可以使用類 dl-horizontal 來使 <dl> 中的術語和註釋按行並排對齊。

你可以嘗試執行以下程式碼來實現 dl-horizontal 類

示例

現場演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap lists</title>
      <meta name = "viewport" content = "width=device-width, initial-scale = 1">
      <link rel = "stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
      <script src = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
   </head>
   <body>
      <h1>Lists</h1>
      <h2>Fruits (Ordered List)</h2>
      <ol>
         <li>Kiwi</li>
         <li>Apple</li>
         <li>Mango</li>
      </ol>
      <h2>Vegetables (UnOrdered List)</h2>
      <ul>
         <li>Tomato</li>
         <li>Brinjal</li>
         <li>Broccoli</li>
      </ul>
      <h2>Horizontal Definition List</h2>
      <dl class = "dl-horizontal">
         <dt>Description 1</dt>
         <dd>Item 1</dd>
         <dt>Description 2</dt>
         <dd>Item 2</dd>
      </dl>
   </body>
</html>

更新於:2020-06-12

3K+ 瀏覽量

開啟你的 職業生涯

完成課程以獲得認證

開始
廣告
© . All rights reserved.