我将页眉和页脚设置为位置:固定。但是在可滚动内容的情况下,文本会转到页眉/页脚区域:这是我的完整代码:http://jsfiddle.net/kaqz1km2/6/
在这种情况下,我不想使用背景图片或背景色。
这就是CSS:
html, body { height:100%; }
header { position:fixed; width:100%; top:0; margin-top:1rem; }
footer { position:fixed; width:100%; bottom:0; line-height:3rem; }

答案 0 :(得分:3)
答案 1 :(得分:0)
使用
更改您的CSShtml, body { height:auto; }
header { position:fixed; width:100%;top:0;height:50px;line-height:50px; background-color:#fff;}
footer {position:fixed; width:100%; bottom:0; height:50px;line-height:50px;background-color:#fff;}
nav li { display:inline; text-transform:uppercase; }
p { width:200px; }
li { margin-right:2rem; }
.container{margin-top:50px;margin-bottom:50px;}
并将1个类容器添加到
<pre> <div id="content" class="container"> </pre>