使用 Bootstrap 4 在中心对齐 flex 项目


要使用 Bootstrap 4 在中心对齐 flex 项目,请使用 .align-self-center 类。

以下是我的 flex div −

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

现在添加 flex 项目,这里我在第三个 flex 项目上应用了 align-self-center 类 −

<div class="d-flex bg-primary" style="height:200px">
  <div class="p-2 border">A-one</div>
  <div class="p-2 border">B-one</div>
  <div class="p-2 border align-self-center">C-one</div>
  <div class="p-2 border">D-one</div>
</div>

可以尝试运行以下代码在 Bootstrap 中实现 align-self-center 类 −

示例

现场演示

<!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 in the center</h1>
    <div class="d-flex bg-primary" style="height:200px">
      <div class="p-2 border">A-one</div>
      <div class="p-2 border">B-one</div>
      <div class="p-2 border align-self-center">C-one</div>
      <div class="p-2 border">D-one</div>
    </div>
  </div>
</body>
</html>

更新日期:17-Jun-2020

974 次浏览

职业生涯开启

通过完成课程获得认证

开始
广告