美文网首页
css布局,左边的滚动时右边不随着滚动

css布局,左边的滚动时右边不随着滚动

作者: hao_developer | 来源:发表于2020-12-07 11:09 被阅读0次
    <body>
    
       <div class="parent">
    
        <div class="leftChild"></div>
    
        <div class="rightChild"></div>
    
      </div>
    
    </body>
    
    body {width: 100%, height: 100%}
    
    .parent {overflow: hidden; position:fixed; top:0; bottom:0; left:0; right:0}
    
    .leftChild {float:left; overflow:auto; width:40%;height: 100%}
    
    .leftChild {float:left; overflow:auto; width:60%; height: 100%}
    

    相关文章

      网友评论

          本文标题:css布局,左边的滚动时右边不随着滚动

          本文链接:https://www.haomeiwen.com/subject/hymgwktx.html