flex如何实现头部固定,内容区域滚动?

发布于 2022-09-11 14:30:38 字数 39 浏览 13 评论 0

问题:类似PC端使用position:fixed能够实现的功能。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

心的憧憬 2022-09-18 14:30:38

我平常是给头部固定高度,然后内容页给height: calc(100% - 头部高度);overflow-y: scoll;来实现的。话说为什么要用flex去实现这个?

爱本泡沫多脆弱 2022-09-18 14:30:38

可以看看我写的:flex固定头部

千仐 2022-09-18 14:30:38
html,body{
      margin: 0;
      padding: 0;
    }
    .wrap{
      display: flex;
      flex-direction: column;
      height: 100vh;
      overflow-y: hidden;
    }
    .head{
      height: 80px;
      background: #f00;
    }
    .footer{
      height: 80px;
      background: #fc0;
    }
    .content{
      display: flex;
      flex-direction: column;
      flex: 1;
      overflow-y: scroll;
    }
    .item{
      display: flex;
      height: 200px;
      flex-shrink: 0;
      background: #1ab394;
      margin-top: 10px;
    }
<div class="wrap">
    <div class="head">头部</div>
    <div class="content">
      <div class="item">1</div>
      <div class="item">2</div>
      <div class="item">3</div>
      <div class="item">4</div>
      <div class="item">5</div>
    </div>
    <div class="footer">底部</div>
  </div>

<iframe height='265' scrolling='no' title='flex-srcoll' src='//codepen.io/rolitter/embed/mzLOxm/?height=265&theme-id=light&default-tab=result' frameborder='no' allowtransparency='true' allowfullscreen='true' style='width: 100%;'>See the Pen flex-srcoll by rolitter (@rolitter) on CodePen.
</iframe>

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文