在 Bootstrap 4 中对齐收集的项目


使用 .align-content-end 类可在 Bootstrap 4 中将收集的项目对齐至末尾。

将项目设置在末尾 -

<div class="d-flex flex-wrap align-content-end”>

您现在需要按以下方式添加 flex 项目-

<div class="d-flex flex-wrap align-content-end bg-primary" style="height:250px">
  <div class="p-2 border">One</div>
  <div class="p-2 border">Two</div>
  <div class="p-2 border">Three</div>
  <div class="p-2 border">Four</div>
  <div class="p-2 border">Five</div>
  <div class="p-2 border">Six</div>
</div>

让我们看一个示例来学习如何在 Bootstrap 4 中将收集的项目对齐至末尾 -

示例

动态演示

<!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</h2>
  <div class="d-flex flex-wrap align-content-end bg-primary" style="height:250px">
    <div class="p-2 border">One</div>
    <div class="p-2 border">Two</div>
    <div class="p-2 border">Three</div>
    <div class="p-2 border">Four</div>
    <div class="p-2 border">Five</div>
    <div class="p-2 border">Six</div>
    <div class="p-2 border">Seven</div>
    <div class="p-2 border">Eight</div>
    <div class="p-2 border">Nine</div>
    <div class="p-2 border">Ten</div>
    <div class="p-2 border">Eleven</div>
    <div class="p-2 border">Twelve</div>
    <div class="p-2 border">Thirteen</div>
    <div class="p-2 border">Fourteen</div>
  </div>
 </div>
</body>
</html>

更新时间:16-6-2020

191 次浏览

启动您的 职业

完成课程获得认证

开始
广告