为了账号安全,请及时绑定邮箱和手机立即绑定

absolute固定标题,内容滚动问题

absolute固定标题,内容滚动问题

慕的地6264312 2018-10-26 18:15:31
<div class="page">     <header class="header-bar"></header>     <div class="content">         <ul><li></li>...</ul>     </div></div>布局差不多这样。page的样式是absolute定位,上下左右都是0,overflow为auto。header是absolute定位,有高度。li有很多条,页面可滚动。我的问题是:在header不为fixed定位的情况空下,当页面滚动的时候,header始终固定在上面,不随着滚动而滚动。
查看完整描述

1 回答

?
不负相思意

TA贡献1777条经验 获得超10个赞

看看是否是你需要的~

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <title>Title</title>

    <style>

        .page{

            position: absolute;

            left:10px;

            top: 10px;


            width: 300px;

            height: 500px;

            overflow: hidden;

        }

        .header-bar{

            position: absolute;

            left:0px;

            top:0px;

            width: 100%;

            height: 50px;

            background-color: #0a6ebd;

        }

        .content{

            padding-top: 50px;

            width: 100%;

            height: calc(100% - 50px);

            background-color: #ffffff;

            overflow-x: hidden;

            overflow-y: auto;

        }


        ul{

            width: 100%;

            background-color: greenyellow;

            height: 1000px;

            padding: 0px;

            margin: 0px;

        }

    </style>

</head>

<body>



<div class="page">

    <header class="header-bar"></header>

    <div class="content">

        <ul>

            <li></li>

        </ul>

    </div>

</div>


</body>

</html>


查看完整回答
反对 回复 2018-11-27
  • 1 回答
  • 0 关注
  • 1011 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信