首先,下面的第一个片段是我试图解决的问题。
请注意,如果将display: flex;应用于body,则此操作非常有效。
但是,我不想对body应用样式,这会破坏google的web缓存布局。
*在第一个片段之后的更多解释

* { box-sizing: border-box; }
body { margin: 0; }
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background-color: #ccc;
}
.navigation {
  background-color: #f00;
  width: 100%;
  height: 3rem;
}
.footer {
  background-color: #0f0;
  width: 100%;
  text-align: center;
  line-height: 2rem;
}

.content {
  background-color: #ff0;
  flex: 1;
  margin: 0.6rem 0 1.2rem;
}
.container {
  background-color: #f0f;
  margin: 0 auto;
  max-width: 120rem;
  width: 100%;
  padding: 0 2rem;
}
.centered {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.long-content {
  background-color: #fff;
}

<main class="wrapper">
  <nav class="navigation">.navigation</nav>
  <div class="content">
    <section class="container centered">
      <div class="long-content">.long-content</div>
    </section>
  </div>
  <footer class="footer">.footer</footer>
</main>

因此,删除display: flex;引发了这个问题:
section内没有跨越.content的高度
试图用.contentonposition: relative.contentonposition: absolute来解决这个问题,但是提出:
.centered的宽度不跨越.centered这可以很容易地用.content固定。
高度与left:0;right:0;中的内容无关(这里我不知道)
使用sectionposition: relative修补原始问题是否错误?
如果是的话,什么是更合适的解决方案?
* { box-sizing: border-box; }
body { margin: 0; }
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background-color: #ccc;
}
.navigation {
  background-color: #f00;
  width: 100%;
  height: 3rem;
}
.footer {
  background-color: #0f0;
  width: 100%;
  text-align: center;
  line-height: 2rem;
}

.content {
  background-color: #ff0;
  flex: 1;
  margin: 0.6rem 0 1.2rem;
  position: relative;
}
.container {
  background-color: #f0f;
  margin: 0 auto;
  max-width: 120rem;
  width: 100%;
  padding: 0 2rem;
}
.centered {
  display: flex;
  position: absolute;
  height: 100%;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: center;
}
.long-content {
  background-color: #fff;
  height: 1000px;
}

<main class="wrapper">
  <nav class="navigation">.navigation</nav>
  <div class="content">
    <section class="container centered">
      <div class="long-content">.long-content</div>
    </section>
  </div>
  <footer class="footer">.footer</footer>
</main>

最佳答案

我继续寻找解决方案,很快发现我对flexbox本身的知识很浅,所以我继续玩Flexbox Froggy
在完成所有级别之后,我注意到只要使用position: absoluteonjustify-content就可以在不.wrapper的情况下对齐所有内容。
下面是我解决愚蠢问题的方法。
如果删除height.long-content.centered将继续垂直对齐。
谢谢你们,青蛙们,大声叫!

* { box-sizing: border-box; }
body { margin: 0; }
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  background-color: #ccc;
  justify-content: space-between;
}
.navigation {
  background-color: #f00;
  width: 100%;
  height: 3rem;
}
.footer {
  background-color: #0f0;
  width: 100%;
  text-align: center;
  line-height: 2rem;
}

.content {
  background-color: #ff0;
  margin: 0.6rem 0 1.2rem;
}
.container {
  background-color: #f0f;
  margin: 0 auto;
  max-width: 120rem;
  width: 100%;
  padding: 0 2rem;
}
.centered {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.long-content {
  background-color: #fff;
  height: 1000px;
}

<main class="wrapper">
  <nav class="navigation">.navigation</nav>
  <div class="content">
    <section class="container centered">
      <div class="long-content">.long-content</div>
    </section>
  </div>
  <footer class="footer">.footer</footer>
</main>

关于html - 具有中心valign的Flexbox,并允许扩展内容,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/53332137/

10-16 20:10