其他分享
首页 > 其他分享> > vue-固定头部-内容可滚动

vue-固定头部-内容可滚动

作者:互联网

 <div class="show-box">             <div class="show-top">                 <span>头部</span>             </div>             <div class="show-content">             XXXXXX             </div>    </div> <!-- #CSS --> .show-box{     overflow: hidden;     height: 100%; } .show-top{     height: 30px;     width: 100%; } .show-content{     height: calc(100% - 30px);     overflow: auto;     position: relative; }

  

标签:vue,滚动,show,100%,height,头部,overflow,30px
来源: https://www.cnblogs.com/jiangcaicai/p/16131053.html