使用 Bootstrap 5 进行网格和垂直对齐

Posted

技术标签:

【中文标题】使用 Bootstrap 5 进行网格和垂直对齐【英文标题】:Grid and vertical alignment with Bootstrap 5 【发布时间】:2022-01-10 15:43:31 【问题描述】:

我只是有一个简单的问题,因为我已经坚持了大约 3 个小时,无法弄清楚。

<!DOCTYPE html>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>

<html>
    <body>
        <div class="container">
            <div class="row justify-content-center">
                <div class="col-md-auto">
                    <h1>TOP</h1>
                </div>
            </div>
            <div class="row justify-content-center">
                <div class="col-md-auto">
                    <h1>LEFT</h1>
                </div>
                <div class="col-md-auto">
                    <h1>RIGHT TOP</h1>
                </div>
                <div class="col-md-auto">
                    <h1>RIGHT BOTTOM</h1>
                </div>
            </div>
        </div>
    </body>
</html>

它应该像这样对齐

这可以水平对齐,但是我现在如何将它垂直居中于网站上并像图片中一样对齐?

【问题讨论】:

我不知道 Bootstrap,但我看到的很明显。对于第二行:您有 3 列。实际上你需要 2 列,第二列应该有 2 行。 【参考方案1】:

这是你想要做的吗?

<link
  href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
  rel="stylesheet"
  integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
  crossorigin="anonymous"
/>
<script
  src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
  integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
  crossorigin="anonymous"
></script>
<style>
  .container,
  .row,
  .col 
    border-style: solid;
  

</style>
<html>
  <body>
    <div class="container">
      <div class="row justify-content-center">
        <div class="col-md-auto">
          <h1>TOP</h1>
        </div>
      </div>
      <div class="row">
        <div class="col">
          <h1>Empty</h1>
        </div>
        <div class="col">
          <div class="row">
            <h1>RIGHT Top</h1>
          </div>
          <div class="row">
            <h1>RIGHT Bottom</h1>
          </div>
        </div>
      </div>
    </div>
  </body>
</html>

【讨论】:

见鬼,对齐就是这样,但是如何将其垂直居中放置在页面上? 阅读this 文章。

以上是关于使用 Bootstrap 5 进行网格和垂直对齐的主要内容,如果未能解决你的问题,请参考以下文章

将 div 与 Bootstrap 列中的相邻 div 对齐

如何在网格布局中垂直对齐 div? [复制]

CSS 文本换行垂直对齐

Packery 在将项目垂直拖放到可排序网格中时,垂直对齐中断

Bootstrap 4 - col垂直对齐未按预期工作[重复]

Bootstrap 4中的垂直对齐DIV和文本