头部底部通栏,内容区域滚动布局

内容区域滚动布局

布局效果图
采用绝对定位布局,sass编写css,koala编译scss文件

内容css
.main {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 100px;
  padding: 10px;
  overflow: auto;
}

代码demo上传github(https://github.com/gaodda/HTML-layout.git)
此外还有左右布局(代码同上github地址)

发布了22 篇原创文章 · 获赞 2 · 访问量 2884

猜你喜欢

转载自blog.csdn.net/gaodda/article/details/90375101