Bootstrap 4 .justify-content-*-around 类


在 Bootstrap 中使用 justify-content-*-around 类在不同屏幕尺寸上围绕对齐弹性项目 −

justify-content-sm-around : Justify content on small screen size
justify-content-md-around : Justify content on medium screen size
justify-content-lg-around : Justify content on large screen size

例如,让我们看看如何为中型屏幕设备对齐弹性项目 (justify-content-md-around) −

<div class="d-flex justify-content-md-around bg-warning mb-5">
  <div class="p-2 bg-danger">RANK 1</div>
  <div class="p-2 bg-info">RANK 2</div>
  <div class="p-2 bg-secondary">RANK 3</div>
</div>

你可以尝试运行以下代码来实现 justify-content-* −

示例

实时演示

<!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">
    <div class="d-flex justify-content-around bg-warning mb-5">
      <div class="p-2 bg-danger">RANK 1</div>
      <div class="p-2 bg-info">RANK 2</div>
      <div class="p-2 bg-secondary">RANK 3</div>
    </div>
    <div class="d-flex justify-content-sm-around bg-warning mb-5">
      <div class="p-2 bg-danger">RANK 1</div>
      <div class="p-2 bg-info">RANK 2</div>
      <div class="p-2 bg-secondary">RANK 3</div>
    </div>
    <div class="d-flex justify-content-md-around bg-warning mb-5">
      <div class="p-2 bg-danger">RANK 1</div>
      <div class="p-2 bg-info">RANK 2</div>
      <div class="p-2 bg-secondary">RANK 3</div>
    </div>
    <div class="d-flex justify-content-lg-around bg-warning mb-5">
      <div class="p-2 bg-danger">RANK 1</div>
      <div class="p-2 bg-info">RANK 2</div>
      <div class="p-2 bg-secondary">RANK 3</div>
    </div>
  </div>

</body>
</html>

更新于: 18-6-2020

浏览量 371

开启你的 事业

通过完成本课程获取认证

开始
广告