在 Bootstrap 4 中以垂直方向顯示彈性專案


要垂直顯示彈性專案,在 Bootstrap 4 中使用 flex-column 類−

<div class="d-flex flex-column mb-3">

現在設定其中的 flex-items −

<div class="d-flex flex-column mb-3">
  <div class="p-2 bg-info">One</div>
  <div class="p-2 bg-warning">Two</div>
  <div class="p-2 bg-info">Three</div>
  <div class="p-2 bg-danger">Four</div>
  <div class="p-2 bg-info">Five</div>
</div>

讓我們看一個示例來學習如何學習如何顯示 flex-column 類 −   

示例

線上演示

<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Bootstrap Example</title>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/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/4.1.0/js/bootstrap.min.js"></script>
  </head>
<body>
  <div class="container mt-3">
    <h2>Example of Flex Column</h2>
    <p>Stating the usage of flex column class:</p>
    <div class="d-flex flex-column mb-3">
      <div class="p-2 bg-info">One</div>
      <div class="p-2 bg-warning">Two</div>
      <div class="p-2 bg-info">Three</div>
      <div class="p-2 bg-danger">Four</div>
      <div class="p-2 bg-info">Five</div>
    </div>
  </div>
</body>
</html>

更新日期:18-6 月 - 2020

209 次瀏覽

開啟您的 職業

透過完成課程獲得認證

現在就開始
廣告
© . All rights reserved.