css布局 上栏固定 下栏自适应

html+div+css 1034 0 2021-05-04

css布局 上栏固定 下栏自适应
<html>
 
<head>
    <title>上下两栏布局(上部固定,下栏自适应)</title>
    <meta charset="utf-8">
    <style>
        * {
            padding: 0;
            margin: 0;
        }
        html,body{
            height: 100%;
        }
    </style>
</head>
 
<body>
    <section class="layout">
        <style>
         .layout{
             height: 100%;
         }
         .layout .left-content .top{
             width: 100%;
             height: 60px;
             background-color: aqua;
         }
         .layout .left-content .content{
             position: absolute;
             top: 60px;
             bottom: 0px;
             width: 100%;
             overflow: auto;
             background-color: red;
         }
        </style>
        <article class="left-content">
            <div class="top"></div>
            <div class="content">
                <h1>中间自适应</h1>
            </div>
        </article>
    </section>
 
</body>
 
</html>

上一篇:HTML中&amp; nbsp; &amp; ensp; &amp; emsp;等6种空格标记

下一篇:iframe 高度100%时,超出DIV并出现垂直滚动条

讨论数量:0

请先登录再发表讨论。 2024-11-24

天涯网魂
3 杠 5 星
TA 的文章
TA 的随言
TA 的资源链