[html] 写一个垂直的三栏布局,第一栏固定顶部,中间铺满,第三栏固定底部

好像有几种写法
我个人比较喜欢的是,
<style> html, body { margin: 0; padding: 0; width: 100%; height: 100%; } .top-level { position: fixed; left: 0; right: 0; height: 50px; z-index: 999; } #top { top: 0; } #center { position: relative; height: 100%; padding: 50px 0; } #bottom { bottom: 0; } </style>

body部分

个人简介

我是歌谣,欢迎和大家一起交流前后端知识。放弃很容易,
但坚持一定很酷。欢迎大家一起讨论

主目录

与歌谣一起通关前端面试题