当我在header
CSS值下方的代码中提供position:fixed
DIV时,content
DIV会上升并重叠。如何将我的内容DIV保留在标题下?
这是我的代码:
<div class="header" style="width:100%; height:50px; positon:fixed;" ></div>
<div class="content" style="width:100%; height:800px;"></div>
<div class="footer" style="width:100%; height:40px;"></div>
答案 0 :(得分:2)
为div添加position:fixed
属性top:0
和.content
div margin-top:50px
(固定.header
div的高度):