本文介绍: 【代码】HTML顶部导航固定,左侧菜单栏固定,右侧内容区上下滚动
<!DOCTYPE html>
<html lang="en"&gt;

<head&gt;
    <meta charset="UTF-8">
    <title>index</title>
    <style type="text/css">

        * {
            margin: 0;
            padding: 0;
        }



        .AllDiv {
            width: 100%;
            height: 100%;
            position: absolute;
            display: flex;
            flex-direction: column;
        }


        .TopNavigation {
            background-color: #262F3E;
            width: 100%;
            height: 60px;
            position: fixed;
            color: white;
            z-index: 1500;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }





        .BodyContentSurface {
            background-color: #F3F4F7;
            width: 100%;
            flex: 1;
        }

        .BodyContent {
            width: 100%;
            height: 100%;
            position: absolute;
            display: flex;
            flex-direction: row;
        }

        .LeftNavigationSurface {
            height: 100%;
            width: 200px;
            position: fixed;
            background-color: #F3F4F7;
            border: 1px solid red;
        }
        .left
        {
          margin-top: 60px;
        }

        .RightContentSurface {
           
            height: 90%;
            flex: 1;
            margin-left: 200px;
            margin-top: 60px;
        }

        .RightContent {
            width: 100%;
            height: 100%;
        }
        .content
        {
          height: 3000px;
          background-color: #F3F4F7;
        }
      </style>
</head>

<body>
<div class="AllDiv">
    <!---顶部菜单栏(固定位置高度:60px)--->
    <div class="TopNavigation">


    </div>

    <!---内容区外壳(自适应铺满高度)--->
    <div class="BodyContentSurface">
        <!---内容区--->
        <div class="BodyContent">
            <!---左侧导航栏(固定位置宽度:200px)--->
            <div class="LeftNavigationSurface">
                <div class="left">
                  LeftNavigationSurface
                </div>
             
            </div>
              <!---右侧内容区(自适应铺满宽度)--->
              <div class="RightContentSurface">
                  <!---右侧内容区--->
                  <div class="RightContent">
                      RightContent
                      <div class="content">
                      </div>
                  </div>
              </div>
        </div>
    </div>
</div>


</body>

</html>

原文地址:https://blog.csdn.net/qq_41749451/article/details/129923603

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_16453.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注