使用 Bootstrap 4 從頭對齊彈性元素


在 Bootstrap 4 中使用 .align-self-start 類從頭對齊彈性元素。

要從頭對齊彈性元素,你需要在該特定彈性元素中設定類 −

<div class="p-2 border align-self-start">
  Item 3
</div>

上面內容已設定在 flex 類中,如下所示 −

<div class="d-flex bg-info" style="height:200px">
  <div class="p-2 border">Item 1</div>
  <div class="p-2 border">Item 2</div>
  <div class="p-2 border align-self-start">Item 3</div>
  <div class="p-2 border">Item 4</div>
</div>

你可以嘗試執行以下程式碼來實現 align-self-start 類 −

示例

即時演示

<!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">
    <h1>Align Specific Flex Item from the start</h1>
    <div class="d-flex bg-info" style="height:200px">
      <div class="p-2 border">Item 1</div>
      <div class="p-2 border">Item 2</div>
      <div class="p-2 border align-self-start">Item 3</div>
      <div class="p-2 border">Item 4</div>
    </div>
  </div>

</body>
</html>

更新日期:2020 年 6 月 17 日

139 次瀏覽

職業生涯作為起點

透過完成課程獲得認證

開始
廣告
© . All rights reserved.