overflow 固定头部,内容滚动

效果图:
这里写图片描述
主要思路:

<div class="box">
   <div class="head"></div>
   <div class="body"></div>
</div>
<style>
.box{
  overflow-x:scroll;
}
.head{
  width:300px;
}
.body{
  width:300px;
  height:50px;
  overflow-y:scroll;
}
</style>

猜你喜欢

转载自blog.csdn.net/weixin_40682842/article/details/79652087