使用 Bootstrap 4 使 flex 專案對齊在末尾


使用 .align-self-end 類可在 Bootstrap 4 中使 flex 專案對齊在末尾。

以下是我的 div −

<div class="d-flex bg-info" style="height:200px">

現在需要設定 flex 專案,其中我將對齊第 3 個 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-end">Item 3</div>
  <div class="p-2 border">Item 4</div>
</div>

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

示例

線上演示

<!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 end</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-end">Item 3</div>
        <div class="p-2 border">Item 4</div>
      </div>
  </div>
 </body>
</html>

更新於: 18-6-2020

679 次瀏覽

開啟你的 職業生涯

完成課程認證

開始
廣告
© . All rights reserved.