首页  >  问答  >  正文

使用 display:flex 使用 CSS 填充剩余的垂直空间

<p>在 3 行布局中:</p> <ul> <li>顶行的大小应根据其内容而定</li> <li>底行应具有固定的高度(以像素为单位)</li> <li>中间行应展开以填充容器</li> </ul> <p>问题在于,随着主要内容的扩展,它会挤压页眉和页脚行:</p> <p><br /></p> <pre class="brush:css;toolbar:false;">section { display: flex; flex-flow: column; align-items: stretch; height: 300px; } header { flex: 0 1 auto; background: tomato; } div { flex: 1 1 auto; background: gold; overflow: auto; } footer { flex: 0 1 60px; background: lightgreen; /* fixes the footer: min-height: 60px; */ }</pre> <pre class="brush:html;toolbar:false;"><section> <header> header: sized to content <br>(but is it really?) </header> <div> main content: fills remaining space<br> x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br> <!-- uncomment to see it break - -> x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br> x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br> x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br> x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br> <!-- --> </div> <footer> footer: fixed height in px </footer> </section></pre> <p><br /></p> <p><strong>小提琴:</strong></p> <ul> <li>http://jsfiddle.net/7yLFL/1/(正在运行,内容较少)</li> <li>http://jsfiddle.net/7yLFL/(已损坏,内容较大)</li> </ul> <p>我很幸运,可以使用最新、最好的 CSS,而无需考虑旧版浏览器。我想我可以使用弹性布局来最终摆脱旧的基于表格的布局。由于某种原因,它没有做我想做的事......</p> <p>根据记录,SO上有很多关于“填充剩余高度”的相关问题,但没有任何问题可以解决我在使用flex时遇到的问题。参考资料:</p> <ul> <li>让 div 填充剩余屏幕空间的高度</li> <li>填充剩余的垂直空间 - 仅 CSS</li> <li>与另一个 div 共享容器时是否有一个 div 来填充容器的剩余高度/宽度?</li> <li>使嵌套 div 拉伸至剩余容器 div 高度的 100%</li> <li>如何使 Flexbox 布局占据 100% 垂直空间?</li> <li>等等</li> </ul><p><br /></p>
P粉794851975P粉794851975395 天前439

全部回复(2)我来回复

  • P粉555696738

    P粉5556967382023-08-24 19:14:15

    下面的示例包括当展开的中心组件的内容超出其边界时的滚动行为。此外,中心组件占用视口中 100% 的剩余空间。

    jsfiddle 这里

    html, body, .r_flex_container{
        height: 100%;
        display: flex;
        flex-direction: column;
        background: red;
        margin: 0;
    }
    .r_flex_container {
        display:flex;
        flex-flow: column nowrap;
        background-color:blue;
    }
    
    .r_flex_fixed_child {
        flex:none;
        background-color:black;
        color:white;
    
    }
    .r_flex_expand_child {
        flex:auto;
        background-color:yellow;
        overflow-y:scroll;
    }

    可用于演示此行为的 html 示例

    <html>
    <body>
        <div class="r_flex_container">
          <div class="r_flex_fixed_child">
            <p> This is the fixed 'header' child of the flex container </p>
          </div>
          <div class="r_flex_expand_child">
                <article>this child container expands to use all of the space given to it -  but could be shared with other expanding childs in which case they would get equal space after the fixed container space is allocated. 
    Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus in, viverra quis, feugiat a, tellus. Phasellus viverra nulla ut metus varius laoreet. Quisque rutrum. Aenean imperdiet. Etiam ultricies nisi vel augue. Curabitur ullamcorper ultricies nisi. Nam eget dui. Etiam rhoncus. Maecenas tempus, tellus eget condimentum rhoncus, sem quam semper libero, sit amet adipiscing sem neque sed ipsum. Nam quam nunc, blandit vel, luctus pulvinar, hendrerit id, lorem. Maecenas nec odio et ante tincidunt tempus. Donec vitae sapien ut libero venenatis faucibus. Nullam quis ante. Etiam sit amet orci eget eros faucibus tincidunt. Duis leo. Sed fringilla mauris sit amet nibh. Donec sodales sagittis magna. Sed consequat, leo eget bibendum sodales, augue velit cursus nunc,
                </article>
          </div>
          <div class="r_flex_fixed_child">
            this is the fixed footer child of the flex container
            asdfadsf
            <p> another line</p>
          </div>
    
        </div>
    </body>
    </html>

    回复
    0
  • P粉018548441

    P粉0185484412023-08-24 16:03:05

    简单一点:DEMO

    section {
      display: flex;
      flex-flow: column;
      height: 300px;
    }
    
    header {
      background: tomato;
      /* no flex rules, it will grow */
    }
    
    div {
      flex: 1;  /* 1 and it will fill whole space left if no flex value are set to other children*/
      background: gold;
      overflow: auto;
    }
    
    footer {
      background: lightgreen;
      min-height: 60px;  /* min-height has its purpose :) , unless you meant height*/
    }
    <section>
      <header>
        header: sized to content
        <br/>(but is it really?)
      </header>
      <div>
        main content: fills remaining space<br> x
        <br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>
        <!-- uncomment to see it break -->
        x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br> x
        <br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br> x
        <br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br> x
        <br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>x<br>
        <!-- -->
      </div>
      <footer>
        footer: fixed height in px
      </footer>
    </section>

    回复
    0
  • 取消回复